Is it possible to link a comment/doc between the method signature and its implementation.
Example :
public interface IExample
{
     /// <summary>
     /// make ... 
     /// </summary>     
     void Something();
}
public class AClass : IExample
{
    void Something()
    {
    }
}
When I mouse Over the AClass Something method I want to have the summary of the interface method signature.
 
    