コード例 #1
0
        public override int Read(byte[] buffer, int offset, int count)
        {
            var read = CommsSerial.Read(buffer, offset, count);

            Position += read;
            return(read);
        }
コード例 #2
0
 public override void Write(byte[] buffer, int offset, int count)
 {
     CommsSerial.Write(buffer, offset, count);
 }