We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c302f commit 284bc99Copy full SHA for 284bc99
README.md
@@ -11,7 +11,7 @@ var bytes = MessagePackSerializer.Serialize(value);
11
```
12
### Deserialization:
13
```C#
14
-var result = (TestClass)MessagePackSerializer.Deserialize(typeof(TestClass), result);
+var result = (TestClass)MessagePackSerializer.Deserialize(typeof(TestClass), bytes);
15
16
### Your type serialization/deserialization:
17
If you want to work with your own types, first thing you need - type converter.
0 commit comments