Writes data of type into the message.
(byte value)
| 180 | /// Writes data of type <see cref="Byte"/> into the message. |
| 181 | /// </summary> |
| 182 | public void WriteByte(byte value) |
| 183 | { |
| 184 | WriteBytes(&value, sizeof(byte)); |
| 185 | } |
| 186 | |
| 187 | /// <summary> |
| 188 | /// Reads and returns data of type <see cref="Byte"/> from the message. |
no outgoing calls
no test coverage detected