示例#1
0
 public ByteOutStream(int capacity)
 {
     Stream = new ByteStream(capacity);
 }
示例#2
0
 public ByteInStream(byte[] data, int size, int position)
 {
     Stream = new ByteStream(data, size, position);
 }