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

luaL_addsize() public static method

Adds a string of length n previously copied to the buffer area (see luaL_prepbuffer) to the buffer B (see luaL_Buffer).
public static luaL_addsize ( luaL_Buffer B, int n ) : void
B luaL_Buffer
n int
return void
        public static void luaL_addsize(luaL_Buffer B, int n)
        {
            // TODO: Implement luaL_addsize
            throw new NotImplementedException("The function you have called, luaL_addsize, is not yet implemented.");
        }
Lua