如何在 MSDN 上快速找到 .NET 框架方法的 URL?

发布于 2024-07-04 03:34:32 字数 402 浏览 5 评论 0原文

如何在 MSDN 网站上找到表示 .NET 框架方法文档的 URL?

例如,我想将 .NET 框架方法的 URL 嵌入到某些代码的某些注释中。 在 MSDN 中搜索的正常“损坏”URL 看起来不太友好: http:// msdn.microsoft.com/library/xd12z8ts.aspx。 使用 Google 搜索 URL 也不是那么漂亮。

我真正想要的是一个可以嵌入简单易读的注释中的 URL。 例如,

// 等等等等。 有关详细信息,请参阅 http://<....>/System.Byte.ToString

How to you find the URL that represents the documentation of a .NET framework method on the MSDN website?

For example, I want to embed the URL for the .NET framework method into some comments in some code. The normal "mangled" URL that one gets searching MSDN isn't very friendly looking: http://msdn.microsoft.com/library/xd12z8ts.aspx. Using a Google search URL isn't all that pretty looking either.

What I really want a URL that can be embedded in comments that is plain and easy to read. For example,

// blah blah blah. See http://<....>/System.Byte.ToString for more information

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

云胡 2024-07-11 03:34:33

我发现谷歌搜索“msdn”就可以了。

即-msdn System.Web.UI.WebControls.Repeater.ItemDataBound

I find that googling "msdn " does it.

ie - msdn System.Web.UI.WebControls.Repeater.ItemDataBound

许你一世情深 2024-07-11 03:34:32

很多时候,您只需将小写命名空间引用附加到域:

http://msdn.microsoft.com/en-us/library/system.windows.application_events.aspx

此外,对于 .Net 2.0 版本(或任何特定版本),您可以添加“(VS.80)”:

http://msdn.microsoft.com/en-us/library/system.windows.forms.button(VS.80).aspx

其他版本:

  • .Net 1.1 - > (VS.71)
  • .Net 2.0 -> (VS.80)
  • .Net 3.0 -> (VS.85)
  • .Net 3.5 -> (VS.90)

尝试使用方法(Control.IsInputChar),如下所示:
http://msdn.microsoft.com/ en-us/library/system.windows.forms.control.isinputchar.aspx

A lot of the time you can merely append the lowercase namespace reference to the domain:

http://msdn.microsoft.com/en-us/library/system.windows.application_events.aspx

Moreover, for say the .Net 2.0 version (or any specific version) you can add "(VS.80)":

http://msdn.microsoft.com/en-us/library/system.windows.forms.button(VS.80).aspx

Other versions:

  • .Net 1.1 -> (VS.71)
  • .Net 2.0 -> (VS.80)
  • .Net 3.0 -> (VS.85)
  • .Net 3.5 -> (VS.90)

Try it for a method (Control.IsInputChar) like so:
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.isinputchar.aspx

您的好友蓝忘机已上羡 2024-07-11 03:34:32

根据我的经验,将其输入谷歌可能是最快的。

编辑:

现在您已经编辑了您的帖子以澄清您的实际含义,我想说在您的评论中嵌入 URL 很好,但您确实无法保证将来会存在损坏的 URL 或漂亮的 URL。

It's probably quickest to just type it into Google in my experience.

EDIT:

Now that you've edited your post to clarify what you actually meant I would say that embedding URLs in your comments is nice but you really have no guarantees that either the mangled URL or the pretty one will exist in future.

等你爱我 2024-07-11 03:34:32

这很简单——只需将方法名称添加到 http://msdn.microsoft.com 的末尾//库/

例如,要查找 System.Byte.ToString 方法的 URL,请转至 http: //msdn.microsoft.com//library/System.Byte.ToString

It's simple -- just add the name of the method to the end of http://msdn.microsoft.com//library/.

For example, to find the URL for the System.Byte.ToString method go to http://msdn.microsoft.com//library/System.Byte.ToString

就像说晚安 2024-07-11 03:34:32

根据我的经验,谷歌搜索比 msdn 搜索速度更快。

In my experiecne, googling it works faster than msdn search.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文