I use visual studio 2019
I have a class
public class User
{
    /// <summary>
    /// Create user in DB
    /// </summary>
    /// <param name="user"></param>
    public void AddUser(User user)
    {
        // Create User
    }
}
I want to extract an interface for this class, but I want the comments of the methods in the interface too.
