Example #1
0
 static public int getPool(IntPtr l)
 {
     try {
         XPoolManager  self = (XPoolManager)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         XPoolType a2;
         checkEnum(l, 3, out a2);
         var ret = self.getPool(a1, a2);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }