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