vote up 3 vote down star

Dear ladies and sirs. Is it possible to reference a constructor from a C# XML comment without resorting to the explicit prefixes (like M: or T:)?

For instance, the following yields compilation warnings, because the compiler does not like ".ctor". Trying "PublishDynamicComponentAttribute.#ctor" is no good,
"PublishDynamicComponentAttribute.PublishDynamicComponentAttribute" is no good too.

/// <summary>
/// Constructs a new <see cref="PublishEntityAttribute"/> instance.
/// </summary>
/// <seealso cref="PublishDynamicComponentAttribute..ctor(Type)"/>
public PublishEntityAttribute(Type entityFactoryType) :
  base(entityFactoryType)
{
}

I am sure the type itself is visible.

So, I am left to use the explicit prefix M:, which removes the compiler verification, so when a type is moved/renamed the cref will be invalid.

Any suggestions?

flag

44% accept rate

1 Answer

vote up 1 vote down check

You specify a constructor as if you are calling it, but with the types of the arguments instead of values for them:


/// <seealso cref="PublishDynamicComponentAttribute(Type)"/>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.