I am trying to get types for record fields in order to create correct comparer (as general solution for any/almost any record type). I can\'t find type information for stati
You need to declare a type in order to have RTTI available. For example:
type TMyStaticArrayOfByte = array[0..3] of byte; TArrFieldTest = record a: string; b: TMyStaticArrayOfByte; end;