The Conroy & Conroy Subroutine Library (2021.3 edition)

TDelphi_Object
What: class
File: _Common
Layer: 0
Platforms: C#, Pascal (Delphi)

This abstract class serves as the base class of all non-COM classes used in the subroutine library. In most platforms, it is a synonym of TObject. It consists of the following methods:

Method: Attach()

This method increments the reference count for the object. This is only available in C++ and Pascal since the other languages support inherent reference counting.

Method: Detach()

This method decrements the reference count for the object. This is only available in C++ and Pascal since the other languages support inherent reference counting.

Method: Is_Class(string Name)

This method returns a boolean indicating if the passed name matches the class name, or the name of any ancestor classes.