I have a very large project at hand - lots of classes and lots of properties (think thousands).
When serializing auto properties for sending data over WCF there is an exception that's handled internally by .NET's XmlConvert class:
Name cannot begin with the '<' character....
(this exception is only visible as First Chance exception, it's handled by .NET internally)
Having a class with 100+ auto properties causes 100+ exceptions every time data is serialized and deserialized, seriously degrading performance.
Apparently if the property has a backing field this is not an issue, no internal exceptions occur.
I'm looking for a tool capable of refactoring all properties in a class (and preferably - a project) to have a backing field. Do you know of any? All tools I've found have the opposite capability, to make auto properties from backed properties.
auto property:
public string Property{get;set;}
backing-field property:
private string _property;
public string Property {
get{return _property;}
set{_property=value;}
}
