Hi all..
Consider this scenario, 2 interfaces, 1 generic:
public IGenericAdder<T>
{
T Add(T, T);
}
public IIntAdder : IGenericAdder<Int32>
{
}
Is there someway that I can do XML comments on the generic add method, so that intellisense will show "Adds the Int32" if I do a:
IIntAdder foo;
foo.Add( //Show intellisense here