<see> tag: how to access a constructor?

  • Thread starter Thread starter Dario
  • Start date Start date
D

Dario

What I have to write in the <see> tag
in order to access the constructor of a class?

E.g.: to access the constructor of a class MyClass
I try <see cref="MyClass.MyClass"/>
but it does not work.

I try also <see cref="MyClass.#ctor"/> but it fails also.

What I have to write?

Thanks.

- Dario
 
Noe, you just need to disambiguate between the class and the method that
share a name by adding parenthesis:

<see cref="MyClass()">
 
Back
Top