Delphi-Quellcode:
ti1 := TypeInfo(myTyp);
ti2 := typeInfo(Single);
if ti1.Name <> ti2.Name then
Bei Typen niemals Namen vergleichen. (maximal nur mit voll qualifizierten Namen, also inkl. Namespace)
Nur weil etwas gleich heißt, muß es nicht das
Gleiche Selbe sein.
if TypeInfo(myTyp) <> TypeInfo(Single) then