Is there any way to generate a ToString()
using Visual Studio 2010?
I really don\'t want to do this by hand!
[EDIT]
I\'m looking for a s
Since the logic of the overridden ToString()
method would depend on your own business needs, the only thing I could imagine is an add-in which creates the empty ToString()
override for you calling base.ToString()
inside, if you then do not customize its content it does not make any sense to have it like that.
Visual Studio already helps you a lot, at least in C#, if you start typing public overrides.