When I type the semicolon, ReSharper does certain things to the line of code I've just authored. Can I include in those actions the removing of the explicit type specification (and replacing it with "var")?
string foo = ""
... and then I type the semicolon, and the line of code is automatically re-written as follows?
var foo = "";
EDIT: I'm using 4.5 -- I'll move to 5.x soon.