BOLTStack.Lua.lua_pushstring C# (CSharp) Method

lua_pushstring() private method

private lua_pushstring ( IntPtr luaState, [ MarshalTypeRef = typeof(UTF8Marshaler))]strings ) : void
luaState System.IntPtr
MarshalTypeRef [
return void
        public static extern void lua_pushstring(
            IntPtr luaState,
            [MarshalAs(UnmanagedType.CustomMarshaler,
                MarshalTypeRef = typeof(UTF8Marshaler))]
            string s);

Usage Example

Esempio n. 1
0
 private static void Push(this IntPtr L, string str)
 {
     Lua.lua_pushstring(L, str);
 }
All Usage Examples Of BOLTStack.Lua::lua_pushstring