Ejemplo n.º 1
0
 public static bool set_size(LuaBytes bytes, int capacity)
 {
     try
     {
         bytes.SetCapacity(capacity);
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Ejemplo n.º 2
0
 public static bool set_size(LuaBytes bytes, int capacity)
 {
     try
     {
         bytes.SetCapacity(capacity);
         return true;
     }
     catch (Exception)
     {
         return false;
     }
 }