Toggle navigation
Hot Examples
ZH
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
搜索
C# (CSharp) BOLTStack Lua.lua_toboolean示例
编程语言:
C# (CSharp)
命名空间/包名称:
BOLTStack
类/类型:
Lua
方法/功能:
lua_toboolean
hotexamples.com的示例:
1
C# (CSharp) BOLTStack Lua.lua_toboolean - 已找到1个示例
。这些是从开源项目中提取的最受好评的
BOLTStack.Lua.lua_toboolean
现实C# (CSharp)示例。您可以评价示例,以帮助我们提高示例质量。
常用方法
显示
隐藏
lua_settop(5)
lua_newtable(5)
lua_gettop(4)
lua_rawgeti(4)
luaL_checkudata(3)
lua_rawseti(3)
lua_pushnumber(2)
lua_setfield(2)
lua_pushstring(2)
lua_pushinteger(2)
lua_pushboolean(2)
lua_pushnil(1)
lua_pushlightuserdata(1)
luaL_ref(1)
lua_objlen(1)
lua_settable(1)
luaL_unref(1)
lua_toboolean(1)
lua_tointeger(1)
lua_tonumber(1)
lua_tostring(1)
lua_touserdata(1)
lua_type(1)
常用方法
lua_settop (5)
lua_newtable (5)
lua_gettop (4)
lua_rawgeti (4)
luaL_checkudata (3)
lua_rawseti (3)
lua_pushnumber (2)
lua_setfield (2)
lua_pushstring (2)
lua_pushinteger (2)
常用方法
lua_pushboolean (2)
lua_pushnil (1)
lua_pushlightuserdata (1)
luaL_ref (1)
lua_objlen (1)
lua_settable (1)
luaL_unref (1)
lua_toboolean (1)
lua_tointeger (1)
lua_tonumber (1)
lua_tostring (1)
lua_touserdata (1)
lua_type (1)
常用方法
lua_tostring (1)
lua_touserdata (1)
lua_type (1)
lua_toboolean()
private
method
private
lua_toboolean
(
IntPtr
luaState
,
int
index
) :
bool
luaState
System.IntPtr
index
int
return
bool
Lua Class Documentation
示例#1
0
显示文件
文件:
LuaExtension.cs
项目:
kingboy2008/boltstack
public static bool GetBool(this IntPtr L, int index) { return(Lua.lua_toboolean(L, index)); }
x