Skip to content

Commit 284bc99

Browse files
authored
Update README.md
Fix readme
1 parent c0c302f commit 284bc99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var bytes = MessagePackSerializer.Serialize(value);
1111
```
1212
### Deserialization:
1313
```C#
14-
var result = (TestClass)MessagePackSerializer.Deserialize(typeof(TestClass), result);
14+
var result = (TestClass)MessagePackSerializer.Deserialize(typeof(TestClass), bytes);
1515
```
1616
### Your type serialization/deserialization:
1717
If you want to work with your own types, first thing you need - type converter.

0 commit comments

Comments
 (0)