Hi.

A short question: Will nil'ing a dynamic string array automatically decrease ref. count on all strings in the array or must this be done manually for the entire array?

Eg.:
var
 StrArray: array of string;

StrArray := nil;

vs.

for i := 0 to High(strarray) do
 StrArray[i] := nil;



Kind regards,
Torsten Bonde Christiansen.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to