I would like to change the name of a class that is being persisted through serialization/deserialization (using a binary formatter). If I simply refactor the name to another name, the deserialization of the file won't load (nor did I expect this).
Is there a way to tell the deserializer to load the class under another class-name, so that I can change the name of the class but still keep the old (and big!) file? Or can I serialize using another class name?
Does the question make sense?