コード例 #1
0
 public int copy_to_array(byte[] str, int max_length = -1)
 {
     if (max_length == -1)
     {
         max_length = str.Length;
     }
     return(PicoDLL.buffer_copy_to_string(handle, str, max_length));
 }