2 writes to _isNull
System.Private.Windows.Core (2)
System\Private\Windows\Core\Id.cs (2)
18_isNull = false; 24_isNull = isNull;
5 references to _isNull
System.Private.Windows.Core (5)
System\Private\Windows\Core\Id.cs (5)
28public bool IsNull => _isNull; 30public static implicit operator int(Id value) => value._isNull ? throw new InvalidOperationException() : value._id; 36public bool Equals(Id other) => _isNull == other._isNull && _id == other._id; 39public override readonly string ToString() => _isNull ? "<null>" : _id.ToString();