*** empty log message ***
[m17n/m17n-lib-cs.git] / textprop.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 = "0123456789";
10     MText mt = new MText (str);
11     MSymbol sym = new MSymbol ("sym");
12     MTextProperty prop = new MTextProperty (sym, "test");
13
14     mt.PushProp (2, 4, prop);
15     Console.WriteLine (mt.GetProp (7, sym));
16     mt.Del (2, 4);
17     Console.WriteLine (mt.GetProp (3, sym));
18   }
19 }