Tests for equality between record objects using the object's properties.

Namespace:  Bespoke.Common.Data
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public static bool Equals<T>(
	T lhs,
	T rhs
)
Visual Basic (Declaration)
Public Shared Function Equals(Of T) ( _
	lhs As T, _
	rhs As T _
) As Boolean
Visual C++
public:
generic<typename T>
static bool Equals(
	T lhs, 
	T rhs
)

Parameters

lhs
Type: T
The LHS.
rhs
Type: T
The RHS.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Bespoke.Common.Data.RecordUtility.Equals``1(``0,``0)"]

Return Value

[Missing <returns> documentation for "M:Bespoke.Common.Data.RecordUtility.Equals``1(``0,``0)"]

See Also