using System; using System.Collections.Generic; using M17N.Core; public class Test { public static void Main() { MSymbol sym1 = new MSymbol ("sym1"); MSymbol sym2 = new MSymbol ("sym2"); MPlist plist = new MPlist (); MText mt1 = new MText ("abc"); MText mt2 = new MText ("ABC"); plist.put (sym1, mt1); plist.put (sym2, mt2); Console.WriteLine (plist); } }