T
Tristan
Hi,
When summary comments are placed above methods in an interface,
is it possible that these comments also correspond to the derived
classes i.e.
public myInterface
{
///<summary>
/// An inteface method that does something
///<summary>
void aMethod();
}
public myClass : myInterface
{
public void aMethod();
}
So someone using myClass would see the summary comments
for aMethod?
Perhaps I'm expecting too much from .NET
Many thanks
Tristan.
When summary comments are placed above methods in an interface,
is it possible that these comments also correspond to the derived
classes i.e.
public myInterface
{
///<summary>
/// An inteface method that does something
///<summary>
void aMethod();
}
public myClass : myInterface
{
public void aMethod();
}
So someone using myClass would see the summary comments
for aMethod?
Perhaps I'm expecting too much from .NET

Many thanks
Tristan.