Be Mindful of the References / ‘using’ / Manifest Relationship
I always have a tendancy to rip out code that’s unneeded or wasteful. Apparently, it doesn’t matter how many using statements you have in your file. It doesn’t make a difference when it comes down to the execution speed or code size.
That’s good. Maybe I can come up with a nice concise list of ‘using’s that I can use for most every file. And then I can just cut-n-paste when I make a new class. Kinda like the way every C++ file usually has at this at the top:
#include stdio.h
#include stdlib.h
#include string.h