When calling methods with a signature that has a delegate, using lamba syntax, Visual Studio 2008 replaces my arbitrary parameter names with autocompleted names.
private void parseIntCell(DataGridViewCell focusCell, Action<Receipt_Detail, int> recorder)
As I type the following:
parseDecimalCell(focusCell, 2, ((x,
As soon as I type the comma, Visual Studio turns it into
parseDecimalCell(focusCell, 2, ((XmlReadMode,
What I wanted to ultimately type
parseDecimalCell(focusCell, 2, ((x,y) => x.Grower_Box_Weight = y));
Is there any way to configure my code or Visual Studio so I can enter these types of lambas without having to press esc to undo the autocomplete, while still having autocomplete for normal code work?
Try pressing CTRL+Alt+Space together, this will not disable autocomplete but in order to autocomplete you need to select from the list.