if (debug)
Console.Write (fmt, arg1, arg2);
}
+
+ public static void DebugPrint (string fmt, object arg1, object arg2, object arg3)
+ {
+ if (debug)
+ Console.Write (fmt, arg1, arg2, arg3);
+ }
}
}
DBDirs[2] = new MDatabaseDir (Path.Combine (share_dir, "m17n"));
}
- private static void Update ()
- {
-
- }
-
-
public static MDatabase Find (MDatabaseTag tag)
{
MDatabase db;
String str = "a𝄀あc";
MText mt = new MText (str);
+ Console.WriteLine ((object) str + mt);
+
Console.WriteLine ("{0}, Length={1}", mt, mt.Length);
foreach (int c in mt)
Console.WriteLine ("U+{0:X4}", c);