5 references to IsLowSurrogate
Microsoft.CodeAnalysis.UnitTests (1)
MetadataReferences\MetadataHelpersTests.cs (1)
26
Assert.True(Char.
IsLowSurrogate
(lowSurrogate, 0));
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
1203
if (!string.IsNullOrEmpty(textData) && Char.
IsLowSurrogate
(textData, 0))
1447
(Char.IsHighSurrogate(text, position - 1) && Char.
IsLowSurrogate
(text, position)))
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.cs (2)
353
if (char.
IsLowSurrogate
(unicode, iTest))
372
Debug.Assert(!char.
IsLowSurrogate
(unicode, basicCount), "[IdnMapping.punycode_encode]Unexpected low surrogate");