7 references to CharUtil
System.Private.Xml (7)
System\Xml\Xsl\Runtime\XslNumber.cs (5)
68if (CharUtil.IsDecimalDigitOne(ch)) 72if (CharUtil.IsDecimalDigitOne((char)(ch + 1))) 143bool isAlphaNumeric = CharUtil.IsAlphaNumeric(formatString[idxStart]); 154if (idx == formatString.Length || isAlphaNumeric != CharUtil.IsAlphaNumeric(formatString[idx])) 298Debug.Assert(CharUtil.IsDecimalDigitOne(startChar), $"Unexpected startChar: {startChar}");
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
689bool lastAlphaNumeric = CharUtil.IsAlphaNumeric(formatString[length]); 702bool currentchar = length < formatString.Length ? CharUtil.IsAlphaNumeric(formatString[length]) : !lastAlphaNumeric;