22 lines
713 B
C#
22 lines
713 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies combinations of modifier and console keys that can interrupt the current process.</summary>
|
|
// Token: 0x020000D0 RID: 208
|
|
[Token(Token = "0x20000D0")]
|
|
[Serializable]
|
|
public enum ConsoleSpecialKey
|
|
{
|
|
/// <summary>The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the <see cref="F:System.ConsoleKey.C" /> console key.</summary>
|
|
// Token: 0x040002E2 RID: 738
|
|
[Token(Token = "0x40002E2")]
|
|
ControlC,
|
|
/// <summary>The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the BREAK console key.</summary>
|
|
// Token: 0x040002E3 RID: 739
|
|
[Token(Token = "0x40002E3")]
|
|
ControlBreak
|
|
}
|
|
}
|