AGS.Plugin.Lua.InvokeLua.ExceptionPanicHandler C# (CSharp) Метод

ExceptionPanicHandler() публичный статический Метод

public static ExceptionPanicHandler ( IntPtr L ) : int
L System.IntPtr
Результат int
        public static int ExceptionPanicHandler(lua_State L)
        {
            throw new LuaException(L, InvokeLua.lua_tostring(L, -1));
        }
InvokeLua