예제 #1
0
 public static bool append_int64_be(LuaBytes bytes, ulong value)
 {
     return(bytes.SetBigInt64(value, bytes.length));
 }
예제 #2
0
 public static bool set_int64_be(LuaBytes bytes, int offset, ulong value)
 {
     return bytes.SetBigInt64(value, offset - 1);
 }
예제 #3
0
 public static bool set_int64_be(LuaBytes bytes, int offset, ulong value)
 {
     return(bytes.SetBigInt64(value, offset - 1));
 }
예제 #4
0
 public static bool append_int64_be(LuaBytes bytes, ulong value)
 {
     return bytes.SetBigInt64(value, bytes.length);
 }