5 references to MinValue
System.Runtime.Serialization (5)
System\Text\SurrogateChar.cs (5)
15
public const int MaxValue =
MinValue
+ (1 << 20) - 1;
24
if (ch <
MinValue
|| ch > MaxValue)
29
this.lowChar = (char)(((ch -
MinValue
) & mask) + surLowMin);
30
this.highChar = (char)((((ch -
MinValue
) >> 10) & mask) + surHighMin);
52
return (lowChar - surLowMin) | ((highChar - surHighMin) << 10) +
MinValue
;