| IObject |
The cObject interface is utilized by many of the classes in VBCorLib. By implementing this interface in new classes, those classes help VBCorLib to perform specific tasks better. Such tasks include searching for a value.
If this interface is implemented, then the same methods should be implemented in the normal public interface to maintain consistency.
If a class is not expected to be used by VBCorLib, then implementing this interface is not necessary.
| Name | Description |
|---|---|
Equals | Returns a boolean indicating the equality of this instance versus the passed in value. |
GetHashCode | Returns a pseudo-unique number to identify this object instance. |
ToString | Returns a string representation of the object. |