Change auto implemented properties to normal and deserialization with BinaryFormatter
问题 I have an object with a property implemented like public String Bla {get;set;} After changing the implementation to something like private String _bla; public String Bla { get { return _bla; } set { _bla = value; } } on deserialzation, this Property comes up empty. i have lots of serialized data from the old implementation, and would like to load them with the new implementation is there any way, to change the implentation to be compatible with older binary files? EDIT: Some people might run