Possible Duplicate:
Why does a single line app with System.Console.WriteLine give me a syntax error?
The environment I am having: Win 8 developer preview + Visual Studio 11 express running on Parallel Mac.
This is what I have for creating a C# class library, it's reporting can not find Console. Below is the source code that can easily produce the error:
using System;
namespace NameSpace1
{
public class MyClass
{
public override string ToString()
{
Console.WriteLine("You are in NameSpace1.MyClass");
}
}
}
Thanks for your help.