Hype trende biraz geç, ama işte Visual Studio 2015 için bulduğum şey.
Benim örneğim şöyle:
/// <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);
}
Sonuçlar:
- İpucu:
- ! İle cref-url gösterir, ancak "this" gizler
- Ahref-url'yi gizler, ancak metni gösterir
- Seehref URL'sini ve metnini gizler
- Nesne Tarayıcısı:
- ! İle cref-url gösterir, ancak "this" i gizler (tıklanabilir değil)
- Ahref-url'yi gizler, ancak metni gösterir (tıklanabilir değil)
- Seehref URL'sini ve metnini gizler (tıklanamaz)
- ReSharper (CTRL + ÜST KRKT + F1, ReSharper Komutu. ReSharper_QuickDoc)
- ! İle cref-url'yi gizler, ancak "this" i (tıklanabilir değil) gösterir
- Şimdi ahref-url'ü yorumlamaktadır (2016 ve daha yeni sürümler)
- Seehref URL'sini ve metnini gizler (tıklanamaz)
Sonuç: Heiner'ın belirttiği gibi en iyisi,
See <a href="link">this link</a> for more information.
Güncelle
Thomas Hagström'ün işaret ettiği gibi, Resharper artık tıklanabilir a-href URL'lerini destekliyor. Ekran görüntüsü buna göre güncellendi.