Writes data of type into the message.
(int value)
| 72 | /// Writes data of type <see cref="Int32"/> into the message. |
| 73 | /// </summary> |
| 74 | public void WriteInt32(int value) |
| 75 | { |
| 76 | WriteBytes((byte*)&value, sizeof(int)); |
| 77 | } |
| 78 | |
| 79 | /// <summary> |
| 80 | /// Reads and returns data of type <see cref="Int32"/> from the message. |
no outgoing calls
no test coverage detected