Implicit usings is nice as it removes a lot of boilerplate, but sometimes I catch myself wanting to easily see which dependencies a specific file has. Not even after decompiling the dll the implicit usings are shown.
Is there any neat way to check this?
Now, I do one of these, not neat ways:
- Hovering over each class
- Turning off implicit usings and import all missing usings, and then revert