Is there to declare samething like this:
Is there to declare samething like this:
TMyRecord = record
strict private
FInstance: array[0..T.InstanceSize - 1] of byte;
end
I want to get TSameClass.InstanceSize as contant to declare static array. Is it possible ?
TMyRecord
strict private
FInstance: array[0..T.InstanceSize - 1] of byte;
end
I want to get TSameClass.InstanceSize as contant to declare static array. Is it possible ?
Comments
Post a Comment