Class_destroyThis |
Homepage |
Dynamically destroys the specified Class object.
Result := Class_destroyThis(ClassObject)
| ClassObject | The Class object to use for the current operation. |
The object will not be destroyed if:
;Creates a new Array (of length 10) myArray := Array_new(10) ;Destroys myArray and frees its memory Result := Class_destroyThis(myArray) ;Creates a new Vector with the default parameters. myVector := Vector_new() ;Destroys myVector and frees its memory Result := Class_destroyThis(myVector)