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