Reads and returns data of type from the message.
()
| 188 | /// Reads and returns data of type <see cref="Byte"/> from the message. |
| 189 | /// </summary> |
| 190 | public byte ReadByte() |
| 191 | { |
| 192 | byte value = 0; |
| 193 | ReadBytes(&value, sizeof(byte)); |
| 194 | return value; |
| 195 | } |
| 196 | |
| 197 | /// <summary> |
| 198 | /// Writes data of type <see cref="Single"/> into the message. |
no test coverage detected