From: Owen B. <ow...@bl...> - 2006-05-03 12:32:37
|
Try a member type identifier (see http://msdn2.microsoft.com/en-US/library/fsbx0t7x.aspx for documentation; it's .Net 2 documentation, cos that's what I have bookmarked, but I believe it's unchanged since .Net 1.x) So, in this case, I think you want <see cref="M:Foo"/>, rather than <see cref="Foo()"/>, <see cref="Foo(String)"/> or <see cref="Foo(Int32)"/> Hth, Owen Mark Ingram wrote (2006-05-03 T 13:05 +0100): > > Hi, if I have a function called Foo(), which is defined as: > > Foo(); > Foo(String test); > Foo(Int32 test); > > How do I make a link in the documentation to the actual overload page > for Foo, not a specific version of the function? > > i.e. > > <see cref="Foo"/> won't compile because of ambiguous symbol. However, > specifying <see cref="Foo()"/> causes it to link to the first instance > of the function. > > Thanks, > > > Mark Ingram > Software Engineer > -- Owen Blacker, London GB Say no to ID cards: www.no2id.net -- They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety --Benjamin Franklin, 1759 |