Tao.Lua.Lua.luaL_checkstring C# (CSharp) Method

luaL_checkstring() public static method

Checks whether the function argument narg is a string and returns this string.
public static luaL_checkstring ( lua_State L, int n ) : string
L lua_State
n int
return string
        public static string luaL_checkstring(lua_State L, int n)
        {
            uint nullValue = 0;
            return luaL_checklstring(L, n, ref nullValue);
        }
Lua