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