请问一个关于delphi 8 关于record的问题!!!!!
在delphi 5 里,下面的code是可以compile 的,但在delphi 8 中,老是报error:
/***********************
[Error] test.pas(8): Type 'Array' needs initialization - not allowed in variant record
[Error] test.pas(9): Type 'Array' needs initialization - not allowed in variant record
**************************/
请大侠们帮忙看看啊,不胜感激!!!!
type BigNum = record
case Integer Of
0: (Contents: array[0..131] of Cardinal);
1: (Bytes: array[0..527] of Byte);
end;