Guard.IsReferenceNotEqualTo<T>(T, T, String) Method

Definition

Asserts that the input value must not be the same instance as the target value.

public static void IsReferenceNotEqualTo<T> (T value, T target, string name) where T : class;
static member IsReferenceNotEqualTo : 'T * 'T * string -> unit (requires 'T : null)
Public Shared Sub IsReferenceNotEqualTo(Of T As Class) (value As T, target As T, name As String)

Type Parameters

T

The type of input values to compare.

Parameters

value
T

The input T value to test.

target
T

The target T value to test for.

name
String

The name of the input parameter being tested.

Exceptions

Thrown if value is the same instance as target.

Remarks

The method is generic to prevent using it with value types.

Applies to