SFML.Window.KeyEventArgs.ToString C# (CSharp) Method

ToString() public method

Provide a string describing the object
public ToString ( ) : string
return string
        public override string ToString()
        {
            return "[KeyEventArgs]" +
                   " Code(" + Code + ")" +
                   " Alt(" + Alt + ")" +
                   " Control(" + Control + ")" +
                   " Shift(" + Shift + ")" +
                   " System(" + System + ")";
        }