Possible Duplicate:
How to make a cref to method overloads in a <seealso> tag in C#?
How can I XML comment my code so that I point to something like this instead of each individual method? ComputeHash Overload
/// <seealso cref="????"/>
public void Foo(String bar) { }
public void Foo(Int32 bar) { }
public void Foo(Double bar) { }
Basically, what do you type in the cref
so that it references the method overload page similar to how the MSDN does?