using System;
namespace System
{
/// Specifies combinations of modifier and console keys that can interrupt the current process.
/// 1
// Token: 0x0200064B RID: 1611
[Serializable]
public enum ConsoleSpecialKey
{
/// The modifier key plus the console key.
// Token: 0x0400187B RID: 6267
ControlC,
/// The modifier key plus the BREAK console key.
// Token: 0x0400187C RID: 6268
ControlBreak
}
}