[Solved] C#, can’t serialize to binary

I figure out what the error is for those in future who might be banging their head wondering what went wrong. It’s actually really simple. A small typo actually. Too bad M$ have horrible error message that don’t really tell you where the error might have happened: Simply replace this line: public void GetObjectData(SerializationInfo info, … Read more

[Solved] Serilization in Java [closed]

It’s Marker Interface and just like an normal interface. with no methods. public class Paging implements Serializable{ } And somewhere else Runtime realizes objects like if (Paging instanceof Serializable) { // Hey this object is able to serialize..lets go furthur } else { // Dear programmer , your class not implemented Serializable } solved Serilization … Read more