Hi All,<br><br>I have two simple questions:<br><br>1) As far as I know class variables in FPC are automatic initialize to the NULL value (e.g. 0 or "" or whatever), does that include dynamic arrays?  e.g.<br><br>

TMyClass = class<br>    myarray: array[0..100] of Integer;<br>end;<br><br>will myarray be initialized to nil?<br><br><br>2) After SetLength(myarray, 0), is myarray nil or pointing to some invalid address?<br><br>Thanks<br>