*** empty log message ***
[m17n/m17n-lib-cs.git] / text.cs
1 using System;
2 using System.Collections.Generic;
3 using M17N.Core;
4
5 public class Test
6 {
7   public static void Main()
8   {
9     String str = "a𝄀あc";
10     MText mt = new MText (str), mt2;
11
12     Console.WriteLine (str + mt);
13     Console.WriteLine (mt + str);
14     Console.WriteLine (mt + 'a');
15     mt2 = mt.Dup ();
16     mt2 += str;
17     Console.WriteLine (mt2);
18
19     Console.WriteLine ("{0}, Length={1}", mt, mt.Length);
20     foreach (int c in mt)
21       Console.WriteLine ("U+{0:X4}", c);
22     Console.WriteLine (mt + new MText ("漢字"));
23   }
24 }