Sergio0694 / BinaryPack

The fastest and most memory efficient binary serialization library for .NET Standard 2.1, powered by dynamic IL generation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Serialization of string

puschie286 opened this issue · comments

Hi,

the readme says that binarypack supports primary types like string but i dont get it to work with string.
it work very well for all other types but string seems to be the only exception

my approch was:

byte[] serialize = BinaryConverter.Serialize( "test" );
string back = BinaryConverter.Deserialize<string>( serialize );

which doesnt compile because of Error CS0310 : 'string' must be a non-abstract type with a public parameterless constructor in order to use it as parameter 'T' in the generic type or method 'BinaryConverter.Serialize<T>(T)'