コード例 #1
0
ファイル: RuntimeManager.cs プロジェクト: msfwaifu/cfx-client
        public override int Read(byte[] buffer, int offset, int count)
        {
            byte[] inRead  = new byte[count];
            int    numRead = m_stream.Read(inRead, count);

            Array.Copy(inRead, 0, buffer, offset, count);

            return(numRead);
        }
コード例 #2
0
 public int Read([Out] byte[] data, int size)
 {
     return(m_realStream.Read(data, size));
 }