7 references to CharUtil
System.Data.SqlXml (7)
System\Xml\Xsl\Runtime\XslNumber.cs (5)
65if (CharUtil.IsDecimalDigitOne(ch)) { 68if (CharUtil.IsDecimalDigitOne((char)(ch + 1))) { 129bool isAlphaNumeric = CharUtil.IsAlphaNumeric(formatString[idxStart]); 138if (idx == formatString.Length || isAlphaNumeric != CharUtil.IsAlphaNumeric(formatString[idx])) { 256Debug.Assert(CharUtil.IsDecimalDigitOne(startChar), "Unexpected startChar: " + startChar);
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
605bool lastAlphaNumeric = CharUtil.IsAlphaNumeric(formatString[length]); 616bool currentchar = length < formatString.Length ? CharUtil.IsAlphaNumeric(formatString[length]) : !lastAlphaNumeric;