コード例 #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);
 }