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

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

public static lua_isboolean ( IntPtr L, int n ) : bool
L System.IntPtr
n int
Результат bool
        public static bool lua_isboolean(lua_State L, int n)
        {
            return (lua_type(L, n) == LUA_TBOOLEAN);
        }
InvokeLua