Files
2026-04-10 22:50:51 +02:00

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: 0x020000C9 RID: 201
[Token(Token = "0x20000C9")]
[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: 0x040002D8 RID: 728
[Token(Token = "0x40002D8")]
ControlC,
/// <summary>The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the BREAK console key.</summary>
// Token: 0x040002D9 RID: 729
[Token(Token = "0x40002D9")]
ControlBreak
}
}