if there is an interface and a class that implements it and you want to have the the xml comment on it to be used in VS intellisense or documentation where would you put the xml comment? on the interface's methods or on the concrete class methods? What is the correct way?
My thoughts are to put it in the interface because we are declaring the variables using interface. And i think its redundant if i also put a comment on the concrete class and see this may lead to different documentation on same method.
Any ideas, advice?