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 prop1 = new MTextProperty (sym, "test1");
13 MTextProperty prop2 = new MTextProperty (sym, "test2");
15 mt.PushProp (2, 5, prop1);
17 mt.PushProp (3, 6, prop2);
21 mt.Ins (4, new MText ("45678"));
23 mt.PopProp (0, 3, sym);
25 mt.PopProp (2, 8, sym);