14 references to IsPunctuation
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\StringBreaker.cs (1)
177
if (ch != '_' && char.
IsPunctuation
(ch))
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionService.cs (1)
372
if (!char.
IsPunctuation
(ch))
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\StringBreaker.cs (1)
177
if (ch != '_' && char.
IsPunctuation
(ch))
Microsoft.Maui.Essentials (1)
TextToSpeech\TextToSpeech.shared.cs (1)
102
if (char.IsWhiteSpace(ch) || char.
IsPunctuation
(ch))
Microsoft.ML.Maml (1)
HelpCommand.cs (1)
501
if (!char.IsLetterOrDigit(val) && !char.
IsPunctuation
(val) && !char.IsSymbol(val))
Microsoft.ML.Transforms (1)
Text\TextNormalizing.cs (1)
401
if (!_parent._keepPunctuations && char.
IsPunctuation
(ch) || !_parent._keepNumbers && char.IsNumber(ch))
PresentationFramework (1)
System\Windows\Documents\TextFindEngine.cs (1)
871
Char.
IsPunctuation
(separatorChar) ||
ReachFramework (1)
MS\Internal\Printing\Configuration\COMPSTUISRID.cs (1)
47
if (char.IsLetterOrDigit(next) || char.
IsPunctuation
(next))
System.ComponentModel.TypeConverter (1)
System\ComponentModel\MaskedTextProvider.cs (1)
1435
return char.IsLetterOrDigit(c) || char.
IsPunctuation
(c) || char.IsSymbol(c) || (c == SPACE_CHAR);
System.Text.Json (1)
src\libraries\System.Text.Json\Common\JsonSeparatorNamingPolicy.cs (1)
18
Debug.Assert(char.
IsPunctuation
(separator));
System.Text.Json.SourceGeneration (1)
src\libraries\System.Text.Json\Common\JsonSeparatorNamingPolicy.cs (1)
18
Debug.Assert(char.
IsPunctuation
(separator));
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Automation\UiaTextRange.cs (1)
674
|| (char.
IsPunctuation
(ch1) && char.IsWhiteSpace(ch2));
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (1)
584
|| (char.
IsPunctuation
(ch1) && char.IsWhiteSpace(ch2));
xunit.assert (1)
Sdk\ArgumentFormatter.cs (1)
311
if (char.IsLetterOrDigit(value) || char.
IsPunctuation
(value) || char.IsSymbol(value) || value == ' ')