Determines if this instance of Column and a specified object, which must be a Column can be considered the same.

Namespace:  NHibernate.Mapping
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Function Equals ( _
	obj As Object _
) As Boolean
C#
public override bool Equals(
	Object obj
)
Visual C++
public:
virtual bool Equals(
	Object^ obj
) override
JavaScript
function equals(obj);

Parameters

obj
Type: System..::.Object
An Object that should be a Column.

Return Value

trueTruetruetrue (True in Visual Basic) if the name of this Column and the other Column are the same, otherwise falseFalsefalsefalse (False in Visual Basic).

See Also