In Visual Studio C# you can, in a class, type ctor and then press Tab and Visual Studio will create a constructor for that class for me. Very convenient.
But is there a way (shortcut) to make Visual Studio generate all constructors with bases from its inherited class?
For example,
public class User:ClassA
{
public User() {}
public User(string S):base(S) {}
public User(string S, int I):base(S, I) {}
...
}
I do not have ReSharper and it is possible.
You can select your base class and press Shift + Alt + F10 and select Generate All:

I am not sure if it comes with the Visual Studio 2015 installation; maybe you need to add an extension. I am not sure which one of them it is required.
Following the extensions I have installed that maybe good candidates:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With