Reads and returns data of type from the message.
()
| 131 | /// Reads and returns data of type <see cref="SByte"/> from the message. |
| 132 | /// </summary> |
| 133 | public sbyte ReadSByte() |
| 134 | { |
| 135 | sbyte value = 0; |
| 136 | ReadBytes((byte*)&value, sizeof(sbyte)); |
| 137 | return value; |
| 138 | } |
| 139 | |
| 140 | /// <summary> |
| 141 | /// Writes data of type <see cref="UInt64"/> into the message. |
nothing calls this directly
no test coverage detected