Ejemplo n.º 1
0
 public static bool append_byte(LuaBytes bytes, byte value)
 {
     return(bytes.SetByte(value, bytes.length));
 }
Ejemplo n.º 2
0
 public static bool append_byte(LuaBytes bytes, byte value)
 {
     return bytes.SetByte(value, bytes.length);
 }
Ejemplo n.º 3
0
 public static bool set_byte(LuaBytes bytes, int offset, byte value)
 {
     return(bytes.SetByte(value, offset - 1));
 }
Ejemplo n.º 4
0
 public static bool set_byte(LuaBytes bytes, int offset, byte value)
 {
     return bytes.SetByte(value, offset - 1);
 }