#if USE_UNI_LUA 
 | 
using LuaAPI = UniLua.Lua; 
 | 
using RealStatePtr = UniLua.ILuaState; 
 | 
using LuaCSFunction = UniLua.CSharpFunctionDelegate; 
 | 
#else 
 | 
using LuaAPI = XLua.LuaDLL.Lua; 
 | 
using RealStatePtr = System.IntPtr; 
 | 
using LuaCSFunction = XLua.LuaDLL.lua_CSFunction; 
 | 
#endif 
 | 
  
 | 
using XLua; 
 | 
using System.Collections.Generic; 
 | 
  
 | 
  
 | 
namespace XLua.CSObjectWrap 
 | 
{ 
 | 
    using Utils = XLua.Utils; 
 | 
    public class SystemObjectWrap  
 | 
    { 
 | 
        public static void __Register(RealStatePtr L) 
 | 
        { 
 | 
            ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
            System.Type type = typeof(object); 
 | 
            Utils.BeginObjectRegister(type, L, translator, 0, 4, 0, 0); 
 | 
             
 | 
            Utils.RegisterFunc(L, Utils.METHOD_IDX, "Equals", _m_Equals); 
 | 
            Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetHashCode", _m_GetHashCode); 
 | 
            Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetType", _m_GetType); 
 | 
            Utils.RegisterFunc(L, Utils.METHOD_IDX, "ToString", _m_ToString); 
 | 
             
 | 
             
 | 
             
 | 
             
 | 
             
 | 
            Utils.EndObjectRegister(type, L, translator, null, null, 
 | 
                null, null, null); 
 | 
  
 | 
            Utils.BeginClassRegister(type, L, __CreateInstance, 3, 0, 0); 
 | 
            Utils.RegisterFunc(L, Utils.CLS_IDX, "Equals", _m_Equals_xlua_st_); 
 | 
            Utils.RegisterFunc(L, Utils.CLS_IDX, "ReferenceEquals", _m_ReferenceEquals_xlua_st_); 
 | 
             
 | 
             
 | 
             
 | 
             
 | 
             
 | 
             
 | 
            Utils.EndClassRegister(type, L, translator); 
 | 
        } 
 | 
         
 | 
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] 
 | 
        static int __CreateInstance(RealStatePtr L) 
 | 
        { 
 | 
             
 | 
            try { 
 | 
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
                if(LuaAPI.lua_gettop(L) == 1) 
 | 
                { 
 | 
                     
 | 
                    object gen_ret = new object(); 
 | 
                    translator.PushAny(L, gen_ret); 
 | 
                     
 | 
                    return 1; 
 | 
                } 
 | 
                 
 | 
            } 
 | 
            catch(System.Exception gen_e) { 
 | 
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e); 
 | 
            } 
 | 
            return LuaAPI.luaL_error(L, "invalid arguments to object constructor!"); 
 | 
             
 | 
        } 
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] 
 | 
        static int _m_Equals(RealStatePtr L) 
 | 
        { 
 | 
            try { 
 | 
             
 | 
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
             
 | 
             
 | 
                object gen_to_be_invoked = translator.FastGetCSObj(L, 1); 
 | 
             
 | 
             
 | 
                 
 | 
                { 
 | 
                    object _obj = translator.GetObject(L, 2, typeof(object)); 
 | 
                     
 | 
                        bool gen_ret = gen_to_be_invoked.Equals( _obj ); 
 | 
                        LuaAPI.lua_pushboolean(L, gen_ret); 
 | 
                     
 | 
                     
 | 
                     
 | 
                    return 1; 
 | 
                } 
 | 
                 
 | 
            } catch(System.Exception gen_e) { 
 | 
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e); 
 | 
            } 
 | 
             
 | 
        } 
 | 
         
 | 
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] 
 | 
        static int _m_Equals_xlua_st_(RealStatePtr L) 
 | 
        { 
 | 
            try { 
 | 
             
 | 
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
             
 | 
             
 | 
             
 | 
                 
 | 
                { 
 | 
                    object _objA = translator.GetObject(L, 1, typeof(object)); 
 | 
                    object _objB = translator.GetObject(L, 2, typeof(object)); 
 | 
                     
 | 
                        bool gen_ret = object.Equals( _objA, _objB ); 
 | 
                        LuaAPI.lua_pushboolean(L, gen_ret); 
 | 
                     
 | 
                     
 | 
                     
 | 
                    return 1; 
 | 
                } 
 | 
                 
 | 
            } catch(System.Exception gen_e) { 
 | 
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e); 
 | 
            } 
 | 
             
 | 
        } 
 | 
         
 | 
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] 
 | 
        static int _m_GetHashCode(RealStatePtr L) 
 | 
        { 
 | 
            try { 
 | 
             
 | 
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
             
 | 
             
 | 
                object gen_to_be_invoked = translator.FastGetCSObj(L, 1); 
 | 
             
 | 
             
 | 
                 
 | 
                { 
 | 
                     
 | 
                        int gen_ret = gen_to_be_invoked.GetHashCode(  ); 
 | 
                        LuaAPI.xlua_pushinteger(L, gen_ret); 
 | 
                     
 | 
                     
 | 
                     
 | 
                    return 1; 
 | 
                } 
 | 
                 
 | 
            } catch(System.Exception gen_e) { 
 | 
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e); 
 | 
            } 
 | 
             
 | 
        } 
 | 
         
 | 
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] 
 | 
        static int _m_GetType(RealStatePtr L) 
 | 
        { 
 | 
            try { 
 | 
             
 | 
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
             
 | 
             
 | 
                object gen_to_be_invoked = translator.FastGetCSObj(L, 1); 
 | 
             
 | 
             
 | 
                 
 | 
                { 
 | 
                     
 | 
                        System.Type gen_ret = gen_to_be_invoked.GetType(  ); 
 | 
                        translator.Push(L, gen_ret); 
 | 
                     
 | 
                     
 | 
                     
 | 
                    return 1; 
 | 
                } 
 | 
                 
 | 
            } catch(System.Exception gen_e) { 
 | 
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e); 
 | 
            } 
 | 
             
 | 
        } 
 | 
         
 | 
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] 
 | 
        static int _m_ToString(RealStatePtr L) 
 | 
        { 
 | 
            try { 
 | 
             
 | 
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
             
 | 
             
 | 
                object gen_to_be_invoked = translator.FastGetCSObj(L, 1); 
 | 
             
 | 
             
 | 
                 
 | 
                { 
 | 
                     
 | 
                        string gen_ret = gen_to_be_invoked.ToString(  ); 
 | 
                        LuaAPI.lua_pushstring(L, gen_ret); 
 | 
                     
 | 
                     
 | 
                     
 | 
                    return 1; 
 | 
                } 
 | 
                 
 | 
            } catch(System.Exception gen_e) { 
 | 
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e); 
 | 
            } 
 | 
             
 | 
        } 
 | 
         
 | 
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] 
 | 
        static int _m_ReferenceEquals_xlua_st_(RealStatePtr L) 
 | 
        { 
 | 
            try { 
 | 
             
 | 
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); 
 | 
             
 | 
             
 | 
             
 | 
                 
 | 
                { 
 | 
                    object _objA = translator.GetObject(L, 1, typeof(object)); 
 | 
                    object _objB = translator.GetObject(L, 2, typeof(object)); 
 | 
                     
 | 
                        bool gen_ret = object.ReferenceEquals( _objA, _objB ); 
 | 
                        LuaAPI.lua_pushboolean(L, gen_ret); 
 | 
                     
 | 
                     
 | 
                     
 | 
                    return 1; 
 | 
                } 
 | 
                 
 | 
            } catch(System.Exception gen_e) { 
 | 
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e); 
 | 
            } 
 | 
             
 | 
        } 
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
         
 | 
    } 
 | 
} 
 |