Un poco tarde en el hype-train, pero esto es lo que descubrí para Visual Studio 2015.
Mi muestra se ve así:
/// <summary>
/// Retrieves information about the specified window.
/// The function also retrieves the value at a specified offset into the extra window memory.
/// From <see cref="!:https://msdn.microsoft.com/en-us/library/windows/desktop/ms633585(v=vs.85).aspx">this</see> MSDN-Link.
/// AHref <a href="http://stackoverflow.com">here</a>.
/// see-href <see href="http://stackoverflow.com">here</see>.
/// </summary>
/// <param name="hwnd"></param>
/// <param name="index"></param>
/// <returns>
/// Testlink in return: <a href="http://stackoverflow.com">here</a>
/// </returns>
public static IntPtr GetWindowLongPtr(IntPtr hwnd, int index)
{
return IntPtr.Size == 4 ? GetWindowLongPtr32(hwnd, index) : GetWindowLongPtr64(hwnd, index);
}
Los resultados son:
- Información sobre herramientas:
- Muestra cref-url con!:, Pero oculta "this"
- Oculta ahref-url pero muestra texto
- Oculta la URL y el texto de seehref
- Navegador de objetos:
- Muestra cref-url con!:, Pero oculta "this" (no se puede hacer clic)
- Oculta ahref-url pero muestra texto (no se puede hacer clic)
- Oculta la URL y el texto de seehref (no se puede hacer clic)
- ReSharper (CTRL + MAYÚS + F1, Comando ReSharper.ReSharper_QuickDoc)
- Oculta cref-url con!:, Pero muestra "this" (no se puede hacer clic)
- Ahora interpreta ahref-url (versión de 2016 y más reciente)
- Oculta la URL y el texto de seehref (no se puede hacer clic)
Conclusión: la mejor, como señaló Heiner, sería
See <a href="link">this link</a> for more information.
Actualización
Como señaló Thomas Hagström, Resharper ahora admite URL a-href clicables. Captura de pantalla actualizada en consecuencia.