In my code, I have messy things like
// Enter key
if (args.Event.KeyValue == 65293)
...
Is there any Enum I can use for this, instead of hard-coding the values?
In my code, I have messy things like
// Enter key
if (args.Event.KeyValue == 65293)
...
Is there any Enum I can use for this, instead of hard-coding the values?