Another reason to love ReSharper
I just had the following code:
{
public Demo(string demo)
{
}
}
ReSharper noticed that I don't do anything with the contructor, and suggested to interduce and initialize a field. This is so useful.
{
string demo;
public Demo(string demo)
{
this.demo = demo;
}
}
I also used the Extract Interface for the first time, which did exactly what I wanted (create a file named IClassName, put the resulting code and inherit from the interface). Sweat.
Comments
Comment preview