Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cref doesn't create link in Object Browser

I have the following code in C# 2010 Class Library:

/// <summary>
/// Execute all enable tests synchronously.
/// Function may throw exception if executed in invalid state (for example, all tests are disabled).
/// If function doesn't throw exception, this doesn't mean, that all tests succeeded. After function 
/// finished, it is necessary to check the state of all tests.
/// Function is synchronous and may take a long time to execute.
/// Use <see cref="SiX_Dg_RequestStop"/> function to stop this function from another thread.
/// </summary>
/// <exception cref="AtpException"></exception>
public static void SiX_Dg_Execute()
{
}

public static void SiX_Dg_RequestStop()
{
}

When I open this library in Visual C# Express Object Browser, XML comment is shown by this way:

Object Broser

exception cref produces valid link, but see cref is shown as plain text, with full namespace added. How can I make this link working?

like image 946
Alex F Avatar asked Nov 10 '22 16:11

Alex F


1 Answers

I think the object explorer of visual studio does not implement that kind of link. Look at the online documentation of the method "System._AppDomain.ExecuteAssembly" msdn for an example of what you need, then look at the object browser. In the first one there is a link but in the second there is no link.

like image 190
Jose M. Avatar answered Nov 14 '22 22:11

Jose M.