using System;
using Cpp2IlInjected;
namespace System
{
/// Specifies combinations of modifier and console keys that can interrupt the current process.
// Token: 0x020000D0 RID: 208
[Token(Token = "0x20000D0")]
[Serializable]
public enum ConsoleSpecialKey
{
/// The modifier key plus the console key.
// Token: 0x040002E2 RID: 738
[Token(Token = "0x40002E2")]
ControlC,
/// The modifier key plus the BREAK console key.
// Token: 0x040002E3 RID: 739
[Token(Token = "0x40002E3")]
ControlBreak
}
}