175 references to CharUnicodeInfo
Aspire.Hosting.Azure (1)
Utils\ResourceGroupNameHelpers.cs (1)
47var unicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c);
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (1)
2219UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(ch);
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeIdentifier.cs (1)
112UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(c);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (2)
1519return (CharUnicodeInfo.GetUnicodeCategory(c) != UnicodeCategory.DecimalDigitNumber); 1524UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(c);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\UniqueCodeIdentifierScope.cs (2)
62return (CharUnicodeInfo.GetUnicodeCategory(c) != UnicodeCategory.DecimalDigitNumber); 67UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(c);
Metrics (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Metrics.Legacy (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Microsoft.Build.Tasks.CodeAnalysis (3)
src\Compilers\Core\Portable\InternalUtilities\UnicodeCharacterUtilities.cs (3)
42return IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 80UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch); 177return ch > 127 && IsFormattingChar(CharUnicodeInfo.GetUnicodeCategory(ch));
Microsoft.Build.Tasks.Core (7)
CreateManifestResourceName.cs (2)
286CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.ConnectorPunctuation; 294UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(c);
tokenChar.cs (5)
37UnicodeCategory cat = System.Globalization.CharUnicodeInfo.GetUnicodeCategory(c); 61UnicodeCategory cat = System.Globalization.CharUnicodeInfo.GetUnicodeCategory(c); 80UnicodeCategory cat = System.Globalization.CharUnicodeInfo.GetUnicodeCategory(c); 100UnicodeCategory cat = System.Globalization.CharUnicodeInfo.GetUnicodeCategory(c); 120UnicodeCategory cat = System.Globalization.CharUnicodeInfo.GetUnicodeCategory(c);
Microsoft.Cci.Extensions (1)
Writers\CSharp\CSDeclarationWriter.Attributes.cs (1)
362var cat = CharUnicodeInfo.GetUnicodeCategory(c);
Microsoft.CodeAnalysis (3)
InternalUtilities\UnicodeCharacterUtilities.cs (3)
42return IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 80UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch); 177return ch > 127 && IsFormattingChar(CharUnicodeInfo.GetUnicodeCategory(ch));
Microsoft.CodeAnalysis.Analyzers (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Microsoft.CodeAnalysis.AnalyzerUtilities (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Microsoft.CodeAnalysis.BannedApiAnalyzers (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Microsoft.CodeAnalysis.CodeStyle (3)
src\Compilers\Core\Portable\InternalUtilities\UnicodeCharacterUtilities.cs (3)
42return IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 80UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch); 177return ch > 127 && IsFormattingChar(CharUnicodeInfo.GetUnicodeCategory(ch));
Microsoft.CodeAnalysis.CSharp (4)
Parser\CharacterInfo.cs (1)
142|| (ch > 255 && CharUnicodeInfo.GetUnicodeCategory(ch) == UnicodeCategory.SpaceSeparator);
SymbolDisplay\ObjectDisplay.cs (3)
180if (NeedsEscaping(CharUnicodeInfo.GetUnicodeCategory(c))) 242if (escapeNonPrintable && CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.Surrogate) 244var category = CharUnicodeInfo.GetUnicodeCategory(value, i);
Microsoft.CodeAnalysis.CSharp.EditorFeatures (3)
StringCopyPaste\StringCopyPasteHelpers.cs (3)
302if (CharUnicodeInfo.GetUnicodeCategory(ch) == UnicodeCategory.Surrogate) 304var category = CharUnicodeInfo.GetUnicodeCategory(value, i); 386if (NeedsEscaping(CharUnicodeInfo.GetUnicodeCategory(c)))
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider (7)
src\Compilers\Core\Portable\InternalUtilities\UnicodeCharacterUtilities.cs (3)
42return IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 80UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch); 177return ch > 127 && IsFormattingChar(CharUnicodeInfo.GetUnicodeCategory(ch));
src\Compilers\CSharp\Portable\Parser\CharacterInfo.cs (1)
142|| (ch > 255 && CharUnicodeInfo.GetUnicodeCategory(ch) == UnicodeCategory.SpaceSeparator);
src\Compilers\CSharp\Portable\SymbolDisplay\ObjectDisplay.cs (3)
180if (NeedsEscaping(CharUnicodeInfo.GetUnicodeCategory(c))) 242if (escapeNonPrintable && CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.Surrogate) 244var category = CharUnicodeInfo.GetUnicodeCategory(value, i);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
LexicalAndXml\LexicalTests.cs (1)
861Assert.Equal(System.Globalization.UnicodeCategory.UppercaseLetter, CharUnicodeInfo.GetUnicodeCategory(text[0]));
Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver (3)
src\Compilers\Core\Portable\InternalUtilities\UnicodeCharacterUtilities.cs (3)
42return IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 80UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch); 177return ch > 127 && IsFormattingChar(CharUnicodeInfo.GetUnicodeCategory(ch));
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\RegularExpressions\RegexCharClass.cs (1)
213switch (CharUnicodeInfo.GetUnicodeCategory(ch))
Microsoft.CodeAnalysis.PublicApiAnalyzers (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Microsoft.CodeAnalysis.ResxSourceGenerator (3)
AbstractResxGenerator.cs (2)
731=> ch == '_' || IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 735var cat = CharUnicodeInfo.GetUnicodeCategory(ch);
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Microsoft.CodeAnalysis.VisualBasic (8)
Scanner\CharacterInfo.vb (5)
69Return CharUnicodeInfo.GetUnicodeCategory(ch) = UnicodeCategory.SpaceSeparator 233Dim CharacterProperties As UnicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c) 377Dim CharacterProperties As UnicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c) 470Return CharUnicodeInfo.GetUnicodeCategory(c) = UnicodeCategory.ConnectorPunctuation 474Return CharUnicodeInfo.GetUnicodeCategory(c) = UnicodeCategory.SpaceSeparator
SymbolDisplay\ObjectDisplay.vb (3)
398ElseIf CharUnicodeInfo.GetUnicodeCategory(c) = UnicodeCategory.Surrogate AndAlso IsPrintable(CharUnicodeInfo.GetUnicodeCategory(str, i - 1)) Then 490Return IsPrintable(CharUnicodeInfo.GetUnicodeCategory(c))
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (3)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\CodeGeneration\ExpressionGenerator.StringPiece.vb (3)
22Dim category = CharUnicodeInfo.GetUnicodeCategory(c) 88Dim category = CharUnicodeInfo.GetUnicodeCategory(c) 90Dim fullCategory = CharUnicodeInfo.GetUnicodeCategory(value, i - 1)
Microsoft.CodeAnalysis.VisualBasic.ResultProvider (8)
src\Compilers\VisualBasic\Portable\Scanner\CharacterInfo.vb (5)
69Return CharUnicodeInfo.GetUnicodeCategory(ch) = UnicodeCategory.SpaceSeparator 233Dim CharacterProperties As UnicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c) 377Dim CharacterProperties As UnicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c) 470Return CharUnicodeInfo.GetUnicodeCategory(c) = UnicodeCategory.ConnectorPunctuation 474Return CharUnicodeInfo.GetUnicodeCategory(c) = UnicodeCategory.SpaceSeparator
src\Compilers\VisualBasic\Portable\SymbolDisplay\ObjectDisplay.vb (3)
398ElseIf CharUnicodeInfo.GetUnicodeCategory(c) = UnicodeCategory.Surrogate AndAlso IsPrintable(CharUnicodeInfo.GetUnicodeCategory(str, i - 1)) Then 490Return IsPrintable(CharUnicodeInfo.GetUnicodeCategory(c))
Microsoft.CodeAnalysis.VisualBasic.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\CodeGeneration\ExpressionGenerator.StringPiece.vb (3)
22Dim category = CharUnicodeInfo.GetUnicodeCategory(c) 88Dim category = CharUnicodeInfo.GetUnicodeCategory(c) 90Dim fullCategory = CharUnicodeInfo.GetUnicodeCategory(value, i - 1)
Microsoft.CodeAnalysis.Workspaces (3)
src\Compilers\Core\Portable\InternalUtilities\UnicodeCharacterUtilities.cs (3)
42return IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 80UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch); 177return ch > 127 && IsFormattingChar(CharUnicodeInfo.GetUnicodeCategory(ch));
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (3)
src\Compilers\Core\Portable\InternalUtilities\UnicodeCharacterUtilities.cs (3)
42return IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 80UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch); 177return ch > 127 && IsFormattingChar(CharUnicodeInfo.GetUnicodeCategory(ch));
Microsoft.DotNet.Arcade.Sdk (2)
src\GenerateResxSource.cs (2)
391=> ch == '_' || IsLetterChar(CharUnicodeInfo.GetUnicodeCategory(ch)); 395var cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Microsoft.Extensions.ApiDescription.Client (2)
CSharpIdentifier.cs (2)
18CharUnicodeInfo.GetUnicodeCategory(character) == UnicodeCategory.LetterNumber; 30var category = CharUnicodeInfo.GetUnicodeCategory(character);
Microsoft.Extensions.FileProviders.Embedded (2)
EmbeddedFileProvider.cs (2)
195CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.ConnectorPunctuation; 203var cat = CharUnicodeInfo.GetUnicodeCategory(c);
Microsoft.ML.Tokenizers (1)
Normalizer\BertNormalizer.cs (1)
62UnicodeCategory category = CharUnicodeInfo.GetUnicodeCategory(original, i);
Microsoft.ML.Transforms (3)
Expression\LexCharUtils.cs (3)
156return (UniCatFlags)(1u << (int)CharUnicodeInfo.GetUnicodeCategory(ch)); 201return ch >= _rgchi.Length && CharUnicodeInfo.GetUnicodeCategory(ch) == UnicodeCategory.Format; 207return CharUnicodeInfo.GetUnicodeCategory(ch) == UnicodeCategory.SpaceSeparator;
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
249[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Globalization.CharUnicodeInfo))]
netstandard (1)
netstandard.cs (1)
819[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Globalization.CharUnicodeInfo))]
Roslyn.Diagnostics.Analyzers (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Roslyn.Test.PdbUtilities (1)
Shared\StringUtilities.cs (1)
21switch (CharUnicodeInfo.GetUnicodeCategory(c))
System.CodeDom (1)
src\libraries\Common\src\System\CSharpHelpers.cs (1)
155UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(ch);
System.Globalization (1)
System.Globalization.cs (1)
14[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Globalization.CharUnicodeInfo))]
System.Private.CoreLib (66)
src\libraries\System.Private.CoreLib\src\System\Char.cs (39)
317return CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.DecimalDigitNumber; 357return CheckLetter(CharUnicodeInfo.GetUnicodeCategory(c)); 378return CharUnicodeInfo.GetIsWhiteSpace(c); 392return CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.UppercaseLetter; 406return CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.LowercaseLetter; 423CharUnicodeInfo.GetUnicodeCategory(c)); 447CharUnicodeInfo.GetUnicodeCategory(c)); 632return CharUnicodeInfo.GetUnicodeCategoryInternal(s, index) == UnicodeCategory.DecimalDigitNumber; 653return CheckLetter(CharUnicodeInfo.GetUnicodeCategoryInternal(s, index)); 670CharUnicodeInfo.GetUnicodeCategoryInternal(s, index)); 690return CharUnicodeInfo.GetUnicodeCategoryInternal(s, index) == UnicodeCategory.LowercaseLetter; 712return CheckNumber(CharUnicodeInfo.GetUnicodeCategory(c)); 737return CheckNumber(CharUnicodeInfo.GetUnicodeCategoryInternal(s, index)); 762CharUnicodeInfo.GetUnicodeCategoryInternal(s, index)); 787return CheckSeparator(CharUnicodeInfo.GetUnicodeCategory(c)); 807return CheckSeparator(CharUnicodeInfo.GetUnicodeCategoryInternal(s, index)); 812return IsBetween(c, CharUnicodeInfo.HIGH_SURROGATE_START, CharUnicodeInfo.LOW_SURROGATE_END); 842CharUnicodeInfo.GetUnicodeCategory(c)); 859CharUnicodeInfo.GetUnicodeCategoryInternal(s, index)); 879return CharUnicodeInfo.GetUnicodeCategoryInternal(s, index) == UnicodeCategory.UppercaseLetter; 905return CharUnicodeInfo.GetUnicodeCategory((int)c); 924return CharUnicodeInfo.GetUnicodeCategoryInternal(s, index); 929return CharUnicodeInfo.GetNumericValue(c); 943return CharUnicodeInfo.GetNumericValueInternal(s, index); 951return IsBetween(c, CharUnicodeInfo.HIGH_SURROGATE_START, CharUnicodeInfo.HIGH_SURROGATE_END); 973return IsBetween(c, CharUnicodeInfo.LOW_SURROGATE_START, CharUnicodeInfo.LOW_SURROGATE_END); 1019uint highSurrogateOffset = (uint)highSurrogate - CharUnicodeInfo.HIGH_SURROGATE_START; 1020uint lowSurrogateOffset = (uint)lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START; 1021return (highSurrogateOffset | lowSurrogateOffset) <= CharUnicodeInfo.HIGH_SURROGATE_RANGE; 1054uint highSurrogateOffset = (uint)highSurrogate - CharUnicodeInfo.HIGH_SURROGATE_START; 1055uint lowSurrogateOffset = (uint)lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START; 1061if ((highSurrogateOffset | lowSurrogateOffset) > CharUnicodeInfo.HIGH_SURROGATE_RANGE) 1067return ((int)highSurrogateOffset << 10) + (lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START) + (0x40 << 10); 1077if (highSurrogateOffset > CharUnicodeInfo.HIGH_SURROGATE_RANGE) 1112int temp1 = s[index] - CharUnicodeInfo.HIGH_SURROGATE_START; 1122int temp2 = s[index + 1] - CharUnicodeInfo.LOW_SURROGATE_START;
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.cs (5)
345StrongBidiCategory eBidi = CharUnicodeInfo.GetBidiCategory(unicode, iAfterLastDot); 358eBidi = CharUnicodeInfo.GetBidiCategory(unicode, iTest); 375StrongBidiCategory testBidi = CharUnicodeInfo.GetBidiCategory(unicode, basicCount); 761StrongBidiCategory eBidi = CharUnicodeInfo.GetBidiCategory(output, iOutputAfterLastDot); 776eBidi = CharUnicodeInfo.GetBidiCategory(output, iTest);
src\libraries\System.Private.CoreLib\src\System\Globalization\InvariantModeCasing.cs (4)
14internal static char ToLower(char c) => CharUnicodeInfo.ToLower(c); 17internal static char ToUpper(char c) => CharUnicodeInfo.ToUpper(c); 206uint aUpper = CharUnicodeInfo.ToUpper(codePointA); 207uint bUpper = CharUnicodeInfo.ToUpper(codePointB);
src\libraries\System.Private.CoreLib\src\System\Globalization\Normalization.Icu.cs (2)
225int i = s.IndexOfAnyInRange(CharUnicodeInfo.HIGH_SURROGATE_START, Noncharacter); 231if (c < CharUnicodeInfo.HIGH_SURROGATE_START)
src\libraries\System.Private.CoreLib\src\System\Globalization\NumberFormatInfo.cs (2)
134if (CharUnicodeInfo.GetDecimalDigitValue(nativeDig[i], 0) != i && 135CharUnicodeInfo.GetUnicodeCategory(nativeDig[i], 0) != UnicodeCategory.PrivateUse)
src\libraries\System.Private.CoreLib\src\System\Globalization\OrdinalCasing.Icu.cs (2)
271uint upperSurrogateA = CharUnicodeInfo.ToUpper(UnicodeUtility.GetScalarFromUtf16SurrogatePair(a, lowSurrogateA)); 272uint upperSurrogateB = CharUnicodeInfo.ToUpper(UnicodeUtility.GetScalarFromUtf16SurrogatePair(b, lowSurrogateB));
src\libraries\System.Private.CoreLib\src\System\Globalization\SurrogateCasing.cs (2)
18UnicodeUtility.GetUtf16SurrogatesFromSupplementaryPlaneScalar(CharUnicodeInfo.ToUpper(UnicodeUtility.GetScalarFromUtf16SurrogatePair(h, l)), out hr, out lr); 30UnicodeUtility.GetUtf16SurrogatesFromSupplementaryPlaneScalar(CharUnicodeInfo.ToLower(UnicodeUtility.GetScalarFromUtf16SurrogatePair(h, l)), out hr, out lr);
src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (2)
534UnicodeCategory charType = CharUnicodeInfo.GetUnicodeCategoryInternal(str, i, out int charLen); 561charType = CharUnicodeInfo.GetUnicodeCategoryInternal(str, i, out charLen);
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\StringSearchValues.cs (2)
487int i = value.AsSpan().IndexOfAnyInRange(CharUnicodeInfo.HIGH_SURROGATE_START, CharUnicodeInfo.LOW_SURROGATE_END);
src\libraries\System.Private.CoreLib\src\System\Text\Rune.cs (5)
1195return CharUnicodeInfo.GetNumericValue(value.Value); 1222return CharUnicodeInfo.GetUnicodeCategory(value.Value); 1382CharUnicodeInfo.GetIsWhiteSpace((char)value._value); 1426return UnsafeCreate(CharUnicodeInfo.ToLower(value._value)); 1475return UnsafeCreate(CharUnicodeInfo.ToUpper(value._value));
src\libraries\System.Private.CoreLib\src\System\Text\Unicode\TextSegmentationUtility.cs (1)
230CurrentType = CharUnicodeInfo.GetGraphemeClusterBreakType(thisRune);
System.Private.Xml (5)
src\libraries\Common\src\System\CSharpHelpers.cs (1)
155UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(ch);
System\Xml\Serialization\CodeIdentifier.cs (2)
115if (CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.DecimalDigitNumber) 122UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(c);
System\Xml\Xsl\Runtime\NumberFormatter.cs (2)
16int category = (int)Globalization.CharUnicodeInfo.GetUnicodeCategory(ch); 25int category = (int)Globalization.CharUnicodeInfo.GetUnicodeCategory(--ch);
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
220[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Globalization.CharUnicodeInfo))]
System.Text.RegularExpressions (2)
System\Text\RegularExpressions\RegexCharClass.cs (2)
1227(WordCategoriesMask & (1 << (int)CharUnicodeInfo.GetUnicodeCategory(ch))) != 0; 1246((WordCategoriesMask & (1 << (int)CharUnicodeInfo.GetUnicodeCategory(ch))) != 0 ||
System.Text.RegularExpressions.Generator (2)
src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCharClass.cs (2)
1227(WordCategoriesMask & (1 << (int)CharUnicodeInfo.GetUnicodeCategory(ch))) != 0; 1246((WordCategoriesMask & (1 << (int)CharUnicodeInfo.GetUnicodeCategory(ch))) != 0 ||
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Internals\ClientUtils.cs (1)
37CharUnicodeInfo.GetUnicodeCategory(character) == UnicodeCategory.NonSpacingMark;
Test.Utilities (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);
Text.Analyzers (1)
src\RoslynAnalyzers\Utilities\Compiler\WellKnownTypeProvider.cs (1)
269UnicodeCategory cat = CharUnicodeInfo.GetUnicodeCategory(ch);