You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto-complete has this annoying behavior that triggers an auto-complete while you're trying to write parameters in a lambda expression. This doesn't happen if you make it explicit that you want to create a delegate (e.g., by prepending scope or new), but in the case below, I want to make a method reference.
Yeah, that is annoying. I don't see a really good solution, though. At that point it looks like you're performing a cast...
I would say that you could disambiguate by providing a capture specifier like [](i) => instead of just the (i) => but capture specifiers don't currently parse on method references.
Auto-complete has this annoying behavior that triggers an auto-complete while you're trying to write parameters in a lambda expression. This doesn't happen if you make it explicit that you want to create a delegate (e.g., by prepending scope or new), but in the case below, I want to make a method reference.
annoying.mp4
Tested with: 2168fb6
The text was updated successfully, but these errors were encountered: