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)
28
public bool IsNull =>
_isNull
;
30
public static implicit operator int(Id value) => value.
_isNull
? throw new InvalidOperationException() : value._id;
36
public bool Equals(Id other) =>
_isNull
== other.
_isNull
&& _id == other._id;
39
public override readonly string ToString() =>
_isNull
? "<null>" : _id.ToString();