I am on VS2012 and want to use the lambda format for event processing, however VS does autocomplete using the tab key whenever you enter a substring of events through + =, for example:
VS autocompleted with reference to function a inserts the function:
txtTitle.TextChanged += txtTitle_TextChanged; void txtTitle_TextChanged(object sender, TextChangedEventArgs e) { .... }
Is there a way to force autofill in lambda format:
txtTitle.TextChanged += (object sender, TextChangedEventArgs e) => { .... }
Its a huge pain that needs to be copied and pasted from autocompleted non-lambda to the more rigid lambda format.
source share