コード例 #1
0
 public static bool IsPubid(string str)
 {
     for (int i = 0; i < str.Length; i++)
     {
         if (!XmlChar.IsPubidChar((int)str[i]))
         {
             return(false);
         }
     }
     return(true);
 }
コード例 #2
0
ファイル: XmlConvert.cs プロジェクト: pmq20/mono_forked
 public static bool IsPublicIdChar(char ch)
 {
     return(XmlChar.IsPubidChar(ch));
 }