Analyzer does not recognize doc comment references of extension methods via extension target #52275
Labels
devexp-ux
legacy-area-analyzer
Use area-devexp instead.
P3
A lower priority bug or feature request
type-enhancement
A request for a change that isn't a bug
Given this code:
Analyzer recognizes the comment references for
[C.x]
and[E.y]
, but not for[C.y]
. I think it should recognize all three.One argument is that
C.x
would not be a legitimate reference (or call or access or whatever) of the instance methodx
, becauseC.x
would have to be a static member reference (or constructor reference). But we make an affordance in doc comment references forC.x
since the reference (almost) cannot be ambiguous between a static member and an instance member ("almost" because a class can have a constructor namedx
and an instance member namedx
simultaneously).So, we should make the same affordance for
[C.y]
.The text was updated successfully, but these errors were encountered: