示例#1
0
 public new virtual void CopyTo(Stream stream)
 {
     StreamUtility.CopyStream(this, stream);
 }
示例#2
0
 public virtual void CopyFrom(Stream stream)
 {
     SetLength(0);
     StreamUtility.CopyStream(stream, this);
 }
示例#3
0
 public new virtual void CopyTo(Stream stream, int count)
 {
     StreamUtility.CopyStream(this, stream, count);
 }
示例#4
0
 public virtual void CopyFrom(Stream stream, int count)
 {
     StreamUtility.CopyStream(stream, this, count);
 }