I'm upgrading an old C# code-base and would like to convert the regular properties to auto-implemented properties. Can this be done from Visual Studio?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It is possible using Resharper. You could download a fully functioning trial version for 30 days. |
|||||||||
|
|
I don't think there is a built in method to do this in VS, but you can use tools like ReSharper to do this sort of refactoring. |
|||
|
|
BinaryFormatterto serialize things this will break your serialization code. – Marc Gravell♦ Jan 31 '11 at 13:13BinaryFormatteris a field-based serializer and the field names matter. So if you serialize your data fromprivate int foo; public int Foo {get {return foo;} set {foo = value; } }and then try to deserialize withpublic int Foo {get;set;}it will go "boom". – Marc Gravell♦ Jan 31 '11 at 13:19