Is there any way to get VS2008 to provide additional information on how to implement a specific interface?
I think about how tags ///work when using the method. It seems to me that sometimes the method name and parameters simply cannot provide enough information about how the interface should work.
Edit
interface MyInterface
{
bool HasFoo ();
}
class MyClass : MyInterface
{
bool HasFoo()
{
}
}
I hope this question will be a little more detailed
source
share