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)
755public override int GetHashCode() => Value; 1149return (UnicodeCategory)(AsciiCharInfo[value.Value] & UnicodeCategoryMask); 1250return (AsciiCharInfo[value.Value] & IsLetterOrDigitFlag) != 0; 1313return (AsciiCharInfo[value.Value] & IsWhiteSpaceFlag) != 0;
Infrastructure\VirtualChars\VirtualChar.cs (1)
92public int Value => SurrogateChar != 0 ? SurrogateChar : Rune.Value;