You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can see, BinaryConverter offers only generic Deserialize<T> method. I would, however, like to deserialize bytes to a target type that is known only at runtime. (I know I can call the Deserialize<T> method with reflection given the type).
So my question is: are you considering implementing method like Deserialize(Type targetType, byte[] bytes)?
The text was updated successfully, but these errors were encountered:
Hello!
As far as I can see,
BinaryConverter
offers only genericDeserialize<T>
method. I would, however, like to deserialize bytes to a target type that is known only at runtime. (I know I can call theDeserialize<T>
method with reflection given the type).So my question is: are you considering implementing method like
Deserialize(Type targetType, byte[] bytes)
?The text was updated successfully, but these errors were encountered: