1 write to _count
System.Private.Windows.Core (1)
System\Private\Windows\Count.cs (1)
20
_count
= count;
8 references to _count
System.Private.Windows.Core (8)
System\Private\Windows\Count.cs (8)
26
public static implicit operator int(Count value) => value.
_count
;
30
=> (obj is Count count && Equals(count)) || (obj is int value && value ==
_count
);
32
public bool Equals(Count other) =>
_count
== other.
_count
;
34
public override readonly int GetHashCode() =>
_count
.GetHashCode();
35
public override readonly string ToString() =>
_count
.ToString();
37
public static bool operator ==(Count left, Count right) => left.
_count
== right.
_count
;