LuaInterface.LuaMethod.LuaMethod C# (CSharp) Méthode

LuaMethod() private méthode

private LuaMethod ( MethodInfo md, Type t, Type types ) : System
md System.Reflection.MethodInfo
t System.Type
types System.Type
Résultat System
        public LuaMethod(MethodInfo md, Type t, Type[] types)
        {
            method = md;
            kclass = t;

            if (types != null)
            {
                list.AddRange(types);
            }
        }