Kann mir jemand erklären warum folgendes möglich ist:
Delphi-Quellcode:
const
Foo = ^A;
FooB = ^B;
FooC = ^C;
...
FooZ = ^Z;
Warum sind diese Buchstaben konstanten definiert?
Und warum ergibt
ShowMessage(IntToStr(Ord(Foo)))
als zahl die position des buchstaben im Alphabet?