Using VS 2008, Visual Assist X 10.5.1738.0
When constructing a lambda expression in C#, the input variable to the expression triggers keyword expansion -- and is starting to drive me crazy.
If I attempt to type:
fields.Keys.Where( k => k == "test)
Before I can finish I wind up with:
fields.Keys.Where(KeyNotFoundException=
It's not just "k", it's almost any single letter input variable.
Workarounds include typing the => first, backing up with the arrow keys and typing the input variable again. Or use a two-letter input variable with unlikely combinations (xk, qp, hj). But having to make a style change to suit Visual Assist is stupid. Is there a fix for this in the works?