Problem with using Console
C:\Documents and Settings\JoeL Zimmerman\My Documents\My Programming\C#\Proxy\Proxy.GUI.Console\EntryPoint.cs(96): The type or namespace name 'WriteLine' does not exist in the class or namespace 'Proxy.GUI.Console' (are you missing an assembly reference?)
I Get that error whenever i make my Main Startup Class in a name space. I get the same error everywhere i use a Method included in the Console Class.
Re: Problem with using Console
Everywhere you are referring to 'Console' unqualified it is being interpreted as the Proxy.GUI.Console namespace, which takes precedence over the System.Console class. You must either choose a different name for your namespace or qualify the System.Console class when you refer to it.