Is it Acceptable to Abbreviate Lambda Parameters
- by Russell Giddings
I frequently see lambda expression parameters abbreviated to one character. For example...
var stringList = new List<string>{ "one", "two", "three" };
stringList.Where(x => x.Length < 4);
Is it acceptable to use x as the parameter name here or should a more descriptive name be used?