Hello,
I'm using the new namespace-declaration in c# 10:
C#namespace Assemblyname.Services;
class xy
{
}
When I extract an interface of the class, then the class is inherited correctly, but the line of the class declaration is located after the namespace:
C#namespace Assemblyname.Services; class cx : ISomeInterface
{
}
Best regards,
Michael
Michael,
I reproduced this behavior. We will fix it soon.