|
-
Jan 31st, 2006, 07:55 PM
#1
Thread Starter
Hyperactive Member
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.
Last edited by BaDDBLooD; Feb 1st, 2006 at 06:26 PM.
-
Jan 31st, 2006, 08:20 PM
#2
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|