(int offset, byte value)
| 141 | } |
| 142 | |
| 143 | public void PutByte(int offset, byte value) |
| 144 | { |
| 145 | AssertOffsetAndLength(offset, sizeof(byte)); |
| 146 | _buffer[offset] = value; |
| 147 | } |
| 148 | |
| 149 | public void PutByte(int offset, byte value, int count) |
| 150 | { |
no test coverage detected