コード例 #1
0
ファイル: UnicodeTestCase.cs プロジェクト: zjw0358/wtgw
        public string CreateTargetRepresentationsRegex()
        {
            List <UAUnicodeChar> list = new List <UAUnicodeChar>();

            list.Add(this.Target);
            return(UnicodeTestCase.CreateRegexFromList(list));
        }
コード例 #2
0
ファイル: UnicodeTestCase.cs プロジェクト: zjw0358/wtgw
 public static string CreateRegexFromChar(UAUnicodeChar c)
 {
     return(UnicodeTestCase.CreateRegexFromList(new List <UAUnicodeChar>()
     {
         c
     }));
 }