Alexander Shishkin schrieb: > You also may refactor your class and define array as a pointer to array > (dont use dynamic array - they are zero initialized) and manage memory > manually ( [Get|Realloc|Free]Mem ). IMO dynamic arrays are not initialized, at least not in Delphi. Only the pointer is initialized (to Nil). DoDi