TObject Constructor.
Source position: objpash.inc line 258
public constructor TObject.Create; |
Create creates a new instance of TObject. Currently it does nothing (except allocating memory for the new instance).
Note that allocating the memory for the object instance happens in hidden code generated as part of every constructor, not only in TObject.Create. The hidden code calls NewInstance.
|
TObject destructor. |