c# - Is there any way to get rid of the long list of usings at the top of my .cs files? -
as more , more namespaces in solution, list of using statements @ top of files grows longer , longer. case in unit tests each component might called need include using interface, ioc container, , concrete type.
with upward of 17 lines of usings in integration test files getting downright messy. know if theres way define macro base using statements? other solutions?
some people enjoy hiding usings in #region
. otherwise, think you're out of luck. unless want put namespace on referents.
Comments
Post a Comment