4 references to IsAlphaNumeric
System.Data.SqlXml (4)
System\Xml\Xsl\Runtime\XslNumber.cs (2)
129bool isAlphaNumeric = CharUtil.IsAlphaNumeric(formatString[idxStart]); 138if (idx == formatString.Length || isAlphaNumeric != CharUtil.IsAlphaNumeric(formatString[idx])) {
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
605bool lastAlphaNumeric = CharUtil.IsAlphaNumeric(formatString[length]); 616bool currentchar = length < formatString.Length ? CharUtil.IsAlphaNumeric(formatString[length]) : !lastAlphaNumeric;