How do I widen the cope of a variable using ReSharper?
from:
public class MyClass
{
public void DoSomething()
{
string widenMe = null; // i want to widen this
}
}
to:
public class MyClass
{
string widenMe = null;
public void DoSomething()
{
}
}
Cheers,
S