roslyn
roslyn copied to clipboard
Intellisense doesn't suggest short attribute name on lambda parameters
Version Used:
VS2022 17.1 preview 2
Steps to Reproduce:
- Type code such as
SizeChanged += ([A] a, b) => { };
- While I typing
[
to enter the lambda parameter environment, Intellisense always suggests me using the full attribute nameAAttribute
(in the above example) instead ofA
:
// ↓ The next character I'm going to type
SizeChanged += ([
Expected Behavior:
Intellisense will suggest me using the short attribute name instead of the full name.
Actual Behavior:
Intellisense suggests me using full attribute name.