1 write to SurrogateChar
Microsoft.AspNetCore.App.Analyzers (1)
Infrastructure\VirtualChars\VirtualChar.cs (1)
83
SurrogateChar
= surrogateChar;
16 references to SurrogateChar
Microsoft.AspNetCore.App.Analyzers (16)
Infrastructure\VirtualChars\VirtualChar.cs (16)
32
/// <see cref="
SurrogateChar
"/>.
92
public int Value =>
SurrogateChar
!= 0 ?
SurrogateChar
: Rune.Value;
95
=>
SurrogateChar
!= 0 ? char.IsDigit(
SurrogateChar
) : Rune.IsDigit(Rune);
98
=>
SurrogateChar
!= 0 ? char.IsLetterOrDigit(
SurrogateChar
) : Rune.IsLetterOrDigit(Rune);
101
=>
SurrogateChar
!= 0 ? char.IsWhiteSpace(
SurrogateChar
) : Rune.IsWhiteSpace(Rune);
122
SurrogateChar
== other.
SurrogateChar
&&
129
hashCode = hashCode * -1521134295 +
SurrogateChar
.GetHashCode();
140
=>
SurrogateChar
!= 0 ?
SurrogateChar
.ToString() : Rune.ToString();
144
if (
SurrogateChar
!= 0)
146
builder.Append(
SurrogateChar
);