static int _m_GetSlice(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                MongoDB.Bson.IO.ByteBufferSlice gen_to_be_invoked = (MongoDB.Bson.IO.ByteBufferSlice)translator.FastGetCSObj(L, 1);



                {
                    int _position = LuaAPI.xlua_tointeger(L, 2);
                    int _length   = LuaAPI.xlua_tointeger(L, 3);

                    MongoDB.Bson.IO.IByteBuffer gen_ret = gen_to_be_invoked.GetSlice(_position, _length);
                    translator.PushAny(L, gen_ret);



                    return(1);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }