6 references to Value
Microsoft.AspNetCore.App.Analyzers (6)
Infrastructure\VirtualChars\RuneExtensions.cs (1)
14
=> TryGetEscapeCharacter(rune.
Value
, out escapedChar);
Infrastructure\VirtualChars\System.Text\Rune.cs (4)
755
public override int GetHashCode() =>
Value
;
1149
return (UnicodeCategory)(AsciiCharInfo[value.
Value
] & UnicodeCategoryMask);
1250
return (AsciiCharInfo[value.
Value
] & IsLetterOrDigitFlag) != 0;
1313
return (AsciiCharInfo[value.
Value
] & IsWhiteSpaceFlag) != 0;
Infrastructure\VirtualChars\VirtualChar.cs (1)
92
public int Value => SurrogateChar != 0 ? SurrogateChar : Rune.
Value
;