319 - Cannot Resolve Symbol in XML Documentation
In the param name line of the xml comment, 'SetChangeEventArgs' is highlighted with 'cannot resolve symbol', althought ctrl+click take me to the symbol.
///
/// Raises the event.
///
/// The instance containing the event data.
protected virtual void OnAdded(SetChangeEventArgs e)
{
SetAfterChangeHandler]]> handler = Added;
if (handler != null)
{
handler(this, e);
}
}
Please sign in to leave a comment.
1) "<>" are not allowed in XML doc, use "{}" instead
2) Because of "1)", this reference is not resolved properly, though there is
resolve candidate
3) Ctrl-Click use resolve candidate when necessary
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"sean kearon" <no_reply@jetbrains.com> wrote in message
news:17142602.1165397600702.JavaMail.itn@is.intellij.net...
>
Aha - will do. However, the '<>' were inserted by the code-completion.....is that R# or VS?
I do believe ReSharper couldn't insert '<>' there :)
But please check
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"sean kearon" <no_reply@jetbrains.com> wrote in message
news:31279065.1165398451771.JavaMail.itn@is.intellij.net...
Just checked - hitting ctrl+space with the cursor at the end of
SetChangeEventArgs
gives:
SetChangeEventArgs<>"
Note the spurious quotation mark. I have all my 'use R# ***' options turned on, so I guess it's R# doing this.
Thank you for the feedback!
I'll deal with this issue ASAP
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"sean kearon" <no_reply@jetbrains.com> wrote in message
news:30312286.1165427764615.JavaMail.itn@is.intellij.net...
>
>
>
>
Fixed
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"sean kearon" <no_reply@jetbrains.com> wrote in message
news:30312286.1165427764615.JavaMail.itn@is.intellij.net...
>
>
>
>
Thanks Eugene