Unsafe.IsNullRef<T>(T) Method

Definition

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

C#
public static bool IsNullRef<T>(ref T source);

Type Parameters

T

The elemental type of the managed pointer.

Parameters

source
T

The managed pointer to check.

Returns

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

Remarks

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

Applies to

Product Versions
.NET 5, 6, 7, 8, 9, 10
.NET Standard 2.0 (package-provided)