static public int Remove(IntPtr l) { try { StrList self = (StrList)checkSelf(l); System.String a1; checkType(l, 2, out a1); var ret = self.Remove(a1); pushValue(l, true); pushValue(l, ret); return(2); } catch (Exception e) { return(error(l, e)); } }