Visual Studio 15.8.5
abstract class A<T>
{
public abstract void AbstractMethod();
}
class B : A<int
{
}
When 'Implement abstract class' is invoked:
abstract class A<T>
{
public abstract void AbstractMethod();
}
class B : A<int
{
{
public override void AbstractMethod()
{
throw new NotImplementedException();
}
}
}
Would be nice to at least keep from adding the duplicate braces if possible.
Visual Studio 15.8.5
When 'Implement abstract class' is invoked:
Would be nice to at least keep from adding the duplicate braces if possible.