using System; using M17N.Core; public class Test { public static void Main() { MText mt = new MText ("a𝄀あc"); Console.WriteLine (mt[0]); Console.WriteLine (mt[1]); Console.WriteLine (mt[2]); Console.WriteLine (mt[3]); Console.WriteLine (mt + new MText ("漢字")); mt[1] = 'b'; Console.WriteLine (mt); mt[1] = 0x1d100; Console.WriteLine (mt); } }