UIntPtr.Zero Field
A read-only field that represents a pointer or handle that has been initialized to zero.
Assembly: mscorlib (in mscorlib.dll)
The value of this field is not equivalent to a null reference (Nothing in Visual Basic). Use this field to efficiently determine whether an instance of UIntPtr has been set to a value other than zero.
For example, assume the variable, uip, is an instance of UIntPtr. You can determine if it has been set by comparing it to the value returned by a constructor, for example: " if uip != new UIntPtr(0)... ". However, invoking a constructor to get an unintialized pointer is inefficient. It is better to code either " if uip != UIntPtr.Zero... ", or " if !UIntPtr.Zero.Equals(uip)... ".
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.