Quote:
Originally Posted by xXziroXx
PHP Code:
enum key{
F9 = 122,
F10 = 123,
F11 = 124
}
I'd prefer doing this since I see no apparent difference:
PHP Code:
this.key = new TStaticVar();
this.key.F9 = 122;
this.key.F10 = 123;
this.key.F11 = 124;
|
Exactly. Enumerators are completely pointless in my book!