This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
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
The elemental type of the managed pointer.
The managed pointer to check.
true
ifsource
is a null reference; otherwise,false
.
This check is conceptually similar to(void*)(&source) == nullptr
.
Was this page helpful?
Was this page helpful?