Unsafe.IsNullRef<T>(T) Method

Definition

Determines if a given reference to a value of type T is a null reference.

public:
generic <typename T>
 static bool IsNullRef(T % source);
public static bool IsNullRef<T> (ref T source);
static member IsNullRef : 'T -> bool
Public Shared Function IsNullRef(Of T) (ByRef source As T) As Boolean

Type Parameters

T

The type of the reference.

Parameters

source
T

The reference to check.

Returns

Boolean

true if source is a null reference; otherwise, false.

Remarks

This check is conceptually similar to (void*)(&source) == nullptr.

Applies to