There is a System namespace inside my program\'s namespace. And as a result I can\'t see the standard System namespace from within mine. How can I
System
For more convenience, you can give it an alias, too:
using GSystem = global::System;
Will allow you to refer to the global System namespace as GSystem or whatever else you would like to call it.
GSystem