Is there any way I can get VS2008 to provide further detail on how a particular interface should be implemented?
I'm thinking along the lines of how the ///
tags work when using a method. It seems to me that sometimes the method name and params just can't provide enough information about exactly how the interface is meant to work.
Edit
interface MyInterface
{
/// <summary>
/// Returns if the object has a foo
/// </summary>
bool HasFoo ();
}
class MyClass : MyInterface
{
bool HasFoo() // (Returns if the object has a foo) <---- Displayed automagicaly from the XML tag in MyInterface
{
}
}
hopefully that clears up the question a little bit more