I am working on a .NET Core project and trying to parse mine List<T>in byte[]. Using the .NET Framework, we could achieve the same by using BinaryFormatter, but at the time of writing this question, it looks like Microsoft does not yet support it in the .NET Core, and none of the next releases seem to be doing this.
Can anyone tell how to do this serialization in .NET Core? It also depends on the binary serialization platform and is therefore deprecated in .NET Core.
source
share