コード例 #1
0
 public static bool IsNextIdentifierChar(char value)
 {
     return(StringValidator.IsFirstIdentifierChar(value) ||
            StringValidator.IsDecimalDigit(value));
 }
コード例 #2
0
 public static bool IsNextSchemaChar(char value)
 {
     return(StringValidator.IsFirstSchemaChar(value) ||
            StringValidator.IsDecimalDigit(value));
 }
コード例 #3
0
 public static bool IsHexDigit(char value)
 {
     return(StringValidator.IsDecimalDigit(value) ||
            ((value >= 'a') && (value <= 'f')) ||
            ((value >= 'A') && (value <= 'F')));
 }