Is it possible to use ToString() in summary xml tag?
/// <summary>
/// I want to use the value from ToString() here.
/// </summary>
public class TheObject
{
public override string ToString()
{
return "Hellow World!";
}
}
No, this is not possible.
These are comments, not executable code.