FrontAndBackClippingGetHashCode Method

Retrieves the object hash code.

Namespace: Teigha.GraphicsInterface
Assembly: TD_Mgd (in TD_Mgd.dll) Version: 24.2.0.0
Syntax
public override sealed int GetHashCode()

Return Value

Int32
an integer identifier that represents a unique number for each instance of a class.
Remarks
For Equals and GetHashCode methods, an override should be completed together to match the logic; if Equals returns true, hashcodes should be same; the same hashcodes do not always mean that objects are the same because of collisions; hashcodes should be formed on fields on which equality is based; sometimes the Equals method is taken from the object, but since pointers are compared, you still can use GetHashCode from here, while Equals can be overridden in the derived class.
See Also

©  Bricsys NV. All rights reserved.