Registers a custom comparison operation for the specified type.

Namespace:  MbUnit.Framework
Assembly:  MbUnit (in MbUnit.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
protected abstract void Register(
	Type type,
	Func<Object, Object, Object> operation
)
Visual Basic (Declaration)
Protected MustOverride Sub Register ( _
	type As Type, _
	operation As Func(Of Object, Object, Object) _
)

Parameters

type
Type: System..::.Type
The type on which the comparer operates.
operation
Type: Gallio.Common..::.Func<(Of <(Object, Object, Object>)>)
The comparison operation.

See Also