I have been using ReSharper for quite a long time and get used to solve a lot of problems by typing Alt+Enter. One of my colleague asked me about the real benefits and I couldn’t say a word apart from that if you are not using it why import it.
Can someone explain what are the real benefits of removing redundant imports if there are eany?
Beside the fact that it cleans up your code, you can also minimize ‘name clashes’.
For instance, when you have 2 types with the same name in different namespaces, and you do not use any type from one namespace … You then do not have to specify the namespace of the type when using it, it keeps your code cleaner.