In VS2010 C# you can, in a class, type ctor and then press tab and VS will create a constructor for that class for me. Very convenient.
But is there any way to make VS create a constructor with all my variables, properties and so on?
eg.
public class User
{
public String UserName { get; private set; }
}
And for this I want ctor + tab to make me a
public User(string UserName)
{
this.UserName = UserName;
}
