TableObject.Equals Method (TableObject)
|
Check if two TableObject are equal.
Namespace:
DXFReaderNET.Tables
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic bool Equals(
TableObject other
)
Public Function Equals (
other As TableObject
) As Boolean
public:
virtual bool Equals(
TableObject^ other
) sealed
abstract Equals :
other : TableObject -> bool
override Equals :
other : TableObject -> bool
METHOD Equals(
other AS TableObject
) AS LOGIC
Parameters
- other
- Type: DXFReaderNET.Tables.TableObject
Another TableObject to compare to.
Return Value
Type:
BooleanTrue if two TableObject are equal or false in any other case.
Implements
IEquatable<T>.Equals(T)
Remarks
Two TableObjects are considered equals if their names are the same, regardless of their internal values.
This is done this way because in a dxf two TableObjects cannot have the same name.
See Also