System.ConsoleKeyInfo public struct ConsoleKeyInfo Documentation Code namespace System { public struct ConsoleKeyInfo { public ConsoleKey Key { get; } public char KeyChar { get; } public ConsoleModifiers Modifiers { get; } public ConsoleKeyInfo(char keyChar, ConsoleKey key, bool shift, bool alt, bool control); public bool Equals(ConsoleKeyInfo obj); public static bool operator ==(ConsoleKeyInfo a, ConsoleKeyInfo b); public static bool operator !=(ConsoleKeyInfo a, ConsoleKeyInfo b); } }