1 write to SurrogateChar
Microsoft.CodeAnalysis.CodeStyle (1)
VirtualChar.cs (1)
79
SurrogateChar
= surrogateChar;
16 references to SurrogateChar
Microsoft.CodeAnalysis.CodeStyle (16)
VirtualChar.cs (16)
34
/// <see cref="
SurrogateChar
"/>.
88
public int Value =>
SurrogateChar
!= 0 ?
SurrogateChar
: Rune.Value;
91
=>
SurrogateChar
!= 0 ? char.IsDigit(
SurrogateChar
) : Rune.IsDigit(Rune);
94
=>
SurrogateChar
!= 0 ? char.IsLetterOrDigit(
SurrogateChar
) : Rune.IsLetterOrDigit(Rune);
97
=>
SurrogateChar
!= 0 ? char.IsWhiteSpace(
SurrogateChar
) : Rune.IsWhiteSpace(Rune);
118
SurrogateChar
== other.
SurrogateChar
&&
125
hashCode = hashCode * -1521134295 +
SurrogateChar
.GetHashCode();
136
=>
SurrogateChar
!= 0 ?
SurrogateChar
.ToString() : Rune.ToString();
140
if (
SurrogateChar
!= 0)
142
builder.Append(
SurrogateChar
);