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
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