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.

link|improve this question
posted code will not compile as is. (missing return) – Mitch Wheat Feb 20 at 23:50
why you would want to write to the console from a class library is another matter... – Mitch Wheat Feb 20 at 23:51
Thanks @Mitch Wheat. This is pure a test code to test why can not find Console in a class library. It shall be together with .NET framework. – May Feb 21 at 1:02
Adding return does not fix this. still look for answers – May Feb 21 at 22:34
feedback

closed as exact duplicate by Kate Gregory, svick, DBM, BrokenGlass, Graviton Feb 23 at 4:45

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

Well, correct me if I'm wrong but Metro Apps don't not use the full .NET library, and hence some classes are missing. Here's the introduction Microsoft gives about this issue.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.