1 write to _value
Microsoft.CodeAnalysis (1)
ExtendedSpecialType.cs (1)
22_value = (sbyte)value;
13 references to _value
Microsoft.CodeAnalysis (13)
ExtendedSpecialType.cs (13)
26public static explicit operator SpecialType(ExtendedSpecialType value) => value._value < (int)InternalSpecialType.First ? (SpecialType)value._value : SpecialType.None; 31public static explicit operator int(ExtendedSpecialType value) => value._value; 33public static bool operator ==(ExtendedSpecialType left, ExtendedSpecialType right) => left._value == right._value; 56return _value.GetHashCode(); 61if (_value > (int)SpecialType.None && _value <= (int)SpecialType.Count) 63return ((SpecialType)_value).ToString(); 66if (_value >= (int)InternalSpecialType.First && _value < (int)InternalSpecialType.NextAvailable) 68return ((InternalSpecialType)_value).ToString(); 71return _value.ToString();