I decided to have a go at building Windows Metro style apps with the Windows Developer Preview again, after multiple frustrating experiences.

So I fire up Visual Studio and BAM! Right as I try to type in this code

System.Console.WriteLine("");

it gives me the red squiggly under "Console".

So I try something else:

string text = System.IO.File.ReadAllText(@"C:\Users\Public\TestFolder\WriteText.txt");

and THAT fails as well! Red squiggly under File.

Why is this error popping up? All this code should work fine! Or am I making a basic mistake?

link|improve this question

What's a red squiggly? – Abel Jan 16 at 16:03
3  
There is no console and a very empty System.IO namespace for Metro-style apps. I guess what you are seeing is indeed correct. – Joey Jan 16 at 16:03
1  
Abel: a red, wavy underline, indicating a syntax error at the underlined position. Very common in graphical IDEs. – Joey Jan 16 at 16:03
@Joey: oh that! Why didn't he say a red wavy underline? Sorry, non-native, and "red squiggly" was the first time I heard the term ;) – Abel Jan 16 at 16:07
2  
You need to set your time machine to June 2013 and imagine your Metro app running on a pad with an ARM core with an 8 hour battery life. Whole bunch of things you can no longer do. No console window. And all OS calls that can block for more than a handful of milliseconds are verboten. Now you know why C# version 5 will have support for the async keyword. – Hans Passant Jan 16 at 16:55
feedback

1 Answer

up vote 10 down vote accepted

Because Metro applications use a subset of the .Net Framework API. In this version System.Console and System.IO.File do not exist.

From MSDN, "Replace System.IO.File.ReadAllText method with a method that uses the asynchronous I/O members; for example:"

public static async Task<string> ReadAllText(StorageFile file)
{
    IInputStream inputStream = await file.OpenForReadAsync();
    using (Stream stream = inputStream.AsStream())
    using (StreamReader reader = new StreamReader(stream))
    {
        return await Task.Run(() => reader.ReadToEnd());
    }
}
link|improve this answer
Ugh. I guess there's no way to work around this besides just recoding everything. Thanks. – JavaAndCSharp Jan 16 at 17:23
5  
To be fair to .Net, using the Console makes no sense in a GUI. – sixlettervariables Jan 16 at 17:46
1  
Many of the things that seem like the simplest possible thing, including the classic Hello World, are anything but the simplest possible in Metro world. Put a control on your form (eg a button) and do something in the handler (but don't use a message box or write to a file.) Change the text of a label for example. That's your Hello Metro. – Kate Gregory Jan 17 at 18:29
feedback

Your Answer

 
or
required, but never shown

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