Ejemplo n.º 1
0
 public static bool append_string(LuaBytes bytes, string value)
 {
     return(bytes.SetString(value, bytes.length));
 }
Ejemplo n.º 2
0
 public static bool set_string(LuaBytes bytes, int offset, string value)
 {
     return bytes.SetString(value, offset - 1);
 }
Ejemplo n.º 3
0
 public static bool set_string(LuaBytes bytes, int offset, string value)
 {
     return(bytes.SetString(value, offset - 1));
 }
Ejemplo n.º 4
0
 public static bool append_string(LuaBytes bytes, string value)
 {
     return bytes.SetString(value, bytes.length);
 }