static public int FindLast(IntPtr l) { try { StrList self = (StrList)checkSelf(l); System.Predicate <System.String> a1; LuaDelegation.checkDelegate(l, 2, out a1); var ret = self.FindLast(a1); pushValue(l, true); pushValue(l, ret); return(2); } catch (Exception e) { return(error(l, e)); } }