2 using System.Collections.Generic;
7 public static void Main ()
9 String str = "0123456789";
10 MText mt = new MText (str);
11 MSymbol sym = new MSymbol ("sym");
12 MTextProperty prop = new MTextProperty (sym, "test");
14 mt.PushProp (2, 4, prop);
15 Console.WriteLine (mt.GetProp (7, sym));
17 Console.WriteLine (mt.GetProp (3, sym));