I basically want to create my own binary serialization class, kinda what BinaryFormatter class is doing. How can i use BinaryReader and BinaryWriter classes to accomplish this.
I don’t want any code but an idea.
Thanks.
PS: Please don’t tell me to use BinaryFormatter.
I basically want to create my own binary serialization class, kinda what BinaryFormatter class
Share
To see how serialisation could be implemented you can look at the c# sourcecode of sharpserializer. The sourcecode can be found here. The code also works under windowsmobile, silverlight.