12 references to IsNull
System.Private.CoreLib (12)
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeNamedTypeInfo.cs (1)
47
if (!typeHandle.
IsNull
)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (1)
623
if (runtimeTypeHandle.
IsNull
)
System\Runtime\CompilerServices\RuntimeHelpers.NativeAot.cs (3)
34
if (type.
IsNull
)
371
if (type.
IsNull
)
403
if (type.
IsNull
)
System\Runtime\InteropServices\TypeMapLazyDictionary.NativeAot.cs (1)
185
if (handle.
IsNull
)
System\RuntimeTypeHandle.cs (1)
38
if (
IsNull
)
System\Type.NativeAot.cs (1)
23
public static unsafe Type? GetTypeFromHandle(RuntimeTypeHandle handle) => handle.
IsNull
? null : GetTypeFromMethodTable(handle.ToMethodTable());
System\TypedReference.cs (4)
41
if (value._typeHandle.
IsNull
)
50
if (handle.
IsNull
)
65
public override int GetHashCode() => _typeHandle.
IsNull
? 0 : _typeHandle.GetHashCode();
67
internal bool IsNull => _typeHandle.
IsNull
;