I'm searching for the equivalent to VS csharp_style_var_for_built_in_types option.
For example, I would like to get a recommendation to use var for the following line:
object foo = new object();
But I would like ReSharper to approve the following line:
for (int i = 0; i < 0x2a; i++)
(How) can I achieve this?
If you uncheck the built-in types, then