Would be fine if the "Implement interface" feature could detect also default implementations in interfaces and offer to implement them in the class, but not implement by default.
Just to remember: Properties AND methods may have default implementations since C# 8.0
Example:
internal interface ITest
{
public string TestString { get; set; }
public string TestStringDef { get { return string.Empty; } }
public bool TestBool() { return true; }
public int TestIntDef => 1;
public void TestMethod();
}
When I dont have TestBool() or any or the properties implemented, VA still tells me "No methods implemented"