Example #1
0
 static public int constructor(IntPtr l)
 {
     try {
         int        argc = LuaDLL.lua_gettop(l);
         StrObjDict o;
         if (argc == 1)
         {
             o = new StrObjDict();
             pushValue(l, true);
             pushValue(l, o);
             return(2);
         }
         else if (argc == 2)
         {
             System.Collections.Generic.IDictionary <System.String, System.Object> a1;
             checkType(l, 2, out a1);
             o = new StrObjDict(a1);
             pushValue(l, true);
             pushValue(l, o);
             return(2);
         }
         return(error(l, "New object failed."));
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
        private static void Main()
        {
            var dict1 = new StrObjDict
            {
                { "name", "name1" },
                { "number", 0.0158 }
            };
            var dict2 = new StrObjDict
            {
                { "name", "name2" },
                { "number", 0.0038 }
            };
            var dict3 = new StrObjDict
            {
                { "name", "name3" },
                { "number", 0.0148 }
            };
            var list = new List <StrObjDict> {
                dict1, dict2, dict3
            };

            list.Sort(new CustomComparer());
            foreach (var element in list)
            {
                Console.WriteLine("Name = {0}, Number = {1}", element["name"], element["number"]);
            }
        }
Example #3
0
 static public int Clear(IntPtr l)
 {
     try {
         StrObjDict self = (StrObjDict)checkSelf(l);
         self.Clear();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #4
0
 static public int get_Values(IntPtr l)
 {
     try {
         StrObjDict self = (StrObjDict)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.Values);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #5
0
 static public int OnDeserialization(IntPtr l)
 {
     try {
         StrObjDict    self = (StrObjDict)checkSelf(l);
         System.Object a1;
         checkType(l, 2, out a1);
         self.OnDeserialization(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #6
0
 static public int ContainsValue(IntPtr l)
 {
     try {
         StrObjDict    self = (StrObjDict)checkSelf(l);
         System.Object a1;
         checkType(l, 2, out a1);
         var ret = self.ContainsValue(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #7
0
 static public int getItem(IntPtr l)
 {
     try {
         StrObjDict self = (StrObjDict)checkSelf(l);
         string     v;
         checkType(l, 2, out v);
         var ret = self[v];
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #8
0
 static public int Add(IntPtr l)
 {
     try {
         StrObjDict    self = (StrObjDict)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         System.Object a2;
         checkType(l, 3, out a2);
         self.Add(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #9
0
 static public int setItem(IntPtr l)
 {
     try {
         StrObjDict self = (StrObjDict)checkSelf(l);
         string     v;
         checkType(l, 2, out v);
         System.Object c;
         checkType(l, 3, out c);
         self[v] = c;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #10
0
 static public int GetObjectData(IntPtr l)
 {
     try {
         StrObjDict self = (StrObjDict)checkSelf(l);
         System.Runtime.Serialization.SerializationInfo a1;
         checkType(l, 2, out a1);
         System.Runtime.Serialization.StreamingContext a2;
         checkValueType(l, 3, out a2);
         self.GetObjectData(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #11
0
 static public int TryGetValue(IntPtr l)
 {
     try {
         StrObjDict    self = (StrObjDict)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         System.Object a2;
         var           ret = self.TryGetValue(a1, out a2);
         pushValue(l, true);
         pushValue(l, ret);
         pushValue(l, a2);
         return(3);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }