Files
Dec2017-Script-Dump/mscorlib/System/ConsoleSpecialKey.cs
T
2026-06-04 11:42:34 +02:00

19 lines
642 B
C#

using System;
namespace System
{
/// <summary>Specifies combinations of modifier and console keys that can interrupt the current process.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x0200064B RID: 1611
[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: 0x0400187B RID: 6267
ControlC,
/// <summary>The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the BREAK console key.</summary>
// Token: 0x0400187C RID: 6268
ControlBreak
}
}