CollectionOrderedConstraint.Using Method

Definition

Overloads

Using(IComparer)

Modifies the constraint to use an IComparer and returns self.

Using<T>(IComparer<T>)

Modifies the constraint to use an IComparer<T> and returns self.

Using<T>(Comparison<T>)

Modifies the constraint to use a Comparison<T> and returns self.

Using(IComparer)

Modifies the constraint to use an IComparer and returns self.

public NUnit.Framework.Constraints.CollectionOrderedConstraint Using (System.Collections.IComparer comparer);
member this.Using : System.Collections.IComparer -> NUnit.Framework.Constraints.CollectionOrderedConstraint

Parameters

comparer
IComparer

Returns

Applies to

Using<T>(IComparer<T>)

Modifies the constraint to use an IComparer<T> and returns self.

public NUnit.Framework.Constraints.CollectionOrderedConstraint Using<T> (System.Collections.Generic.IComparer<T> comparer);
member this.Using : System.Collections.Generic.IComparer<'T> -> NUnit.Framework.Constraints.CollectionOrderedConstraint

Type Parameters

T

Parameters

comparer
IComparer<T>

Returns

Applies to

Using<T>(Comparison<T>)

Modifies the constraint to use a Comparison<T> and returns self.

public NUnit.Framework.Constraints.CollectionOrderedConstraint Using<T> (Comparison<T> comparer);
member this.Using : Comparison<'T> -> NUnit.Framework.Constraints.CollectionOrderedConstraint

Type Parameters

T

Parameters

comparer
Comparison<T>

Returns

Applies to