1 write to _count
PresentationCore (1)
System\Windows\BinaryFormat\Count.cs (1)
20
private Count(int count) =>
_count
= count.OrThrowIfNegative();
8 references to _count
PresentationCore (8)
System\Windows\BinaryFormat\Count.cs (8)
25
public static implicit operator int(Count value) => value.
_count
;
29
=> (obj is Count count && Equals(count)) || (obj is int value && value ==
_count
);
31
public bool Equals(Count other) =>
_count
== other.
_count
;
33
public override readonly int GetHashCode() =>
_count
.GetHashCode();
34
public override readonly string ToString() =>
_count
.ToString();
36
public static bool operator ==(Count left, Count right) => left.
_count
== right.
_count
;