This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
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
}
}