Reads and returns data of type from the message.
()
| 113 | /// Reads and returns data of type <see cref="Int16"/> from the message. |
| 114 | /// </summary> |
| 115 | public short ReadInt16() |
| 116 | { |
| 117 | short value = 0; |
| 118 | ReadBytes((byte*)&value, sizeof(short)); |
| 119 | return value; |
| 120 | } |
| 121 | |
| 122 | /// <summary> |
| 123 | /// Writes data of type <see cref="SByte"/> into the message. |
nothing calls this directly
no test coverage detected