Reads and returns data of type from the message.
()
| 80 | /// Reads and returns data of type <see cref="Int32"/> from the message. |
| 81 | /// </summary> |
| 82 | public int ReadInt32() |
| 83 | { |
| 84 | int value = 0; |
| 85 | ReadBytes((byte*)&value, sizeof(int)); |
| 86 | return value; |
| 87 | } |
| 88 | |
| 89 | /// <summary> |
| 90 | /// Writes data of type <see cref="Int16"/> into the message. |
no test coverage detected