*** empty log message ***
[m17n/m17n-lib-cs.git] / temp.cs
diff --git a/temp.cs b/temp.cs
index d327f3a..2dc7619 100644 (file)
--- a/temp.cs
+++ b/temp.cs
@@ -9,20 +9,12 @@ public class Test
     MText mt = new MText ("a𝄀あc");
     MText mt2;
 
-    Console.WriteLine (mt[0]);
-    Console.WriteLine (mt[1]);
-    Console.WriteLine (mt[2]);
-    Console.WriteLine (mt[3]);
+    Console.WriteLine ("Length={0}", mt.Length);
+    foreach (int c in mt)
+      Console.WriteLine ("U+{0:X4}", c);
     Console.WriteLine (mt + new MText ("漢字"));
     mt2 = mt.dup ();
     mt[1] = 'b';
     Console.WriteLine (mt2);
-
-    List<int> list = new List<int>();
-
-    list.Add (1);
-    list.Add (2);
-    for (int i = 0; i < 2; i++)
-      Console.WriteLine (list[i]);
   }
 }