Movatterモバイル変換


[0]ホーム

URL:


Skip to main contentSkip to in-page navigation

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft EdgeMore info about Internet Explorer and Microsoft Edge
Table of contentsExit focus mode

Unsafe.IsNullRef<T>(T) Method

Definition

Namespace:
System.Runtime.CompilerServices
Assembly:
System.Runtime.dll
Assembly:
System.Runtime.CompilerServices.Unsafe.dll
Assemblies:
System.Runtime.dll, System.Runtime.CompilerServices.Unsafe.dll
Package:
System.Runtime.CompilerServices.Unsafe v6.1.2
Source:
Unsafe.cs
Source:
Unsafe.cs
Source:
Unsafe.cs
Source:
Unsafe.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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

public:generic <typename T> static bool IsNullRef(T % source);
public static bool IsNullRef<T>(ref T source) where T : allows ref struct;
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 elemental type of the managed pointer.

Parameters

source
T

The managed pointer to check.

Returns

true ifsource is a null reference; otherwise,false.

Remarks

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

Applies to

Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, seeour contributor guide.

Feedback

Was this page helpful?

YesNo

In this article

Was this page helpful?

YesNo