-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Collections_ComparerBuilder_1_GetEqualsFunc_2
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Returns GetEqualsFunc function for provided members for type T to compare.
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static Func<T, T, bool> GetEqualsFunc(
params Expression<Func<T, Object>>[] members
)
VB
Public Shared Function GetEqualsFunc (
ParamArray members As Expression(Of Func(Of T, Object))()
) As Func(Of T, T, Boolean)
F#
static member GetEqualsFunc :
members : Expression<Func<'T, Object>>[] -> Func<'T, 'T, bool>
- members
- Type: System.Linq.Expressions.Expression(Func(T, Object))[]
Members to compare.
Type: Func(T, T, Boolean)
GetEqualsFunc function.
ComparerBuilder(T) Class
GetEqualsFunc Overload
CodeJam.Collections Namespace