Why does my simple hello world console app use so much memory?

Posted by CodingThunder on Stack Overflow See other posts from Stack Overflow or by CodingThunder
Published on 2010-03-24T10:25:57Z Indexed on 2010/03/24 10:33 UTC
Read the original article Hit count: 205

Filed under:

Looking in Process Explorer it uses; Virtual Size: 550,000k , Working Set: 28000k

Why does my simple hello world console app use so much memory?

I take it the difference between the Working Set and Virtual Size means that difference will be paged to disk?

/I am running 64 bit XP.

Thanks

class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Hello world");
        Console.ReadLine();
    }
}

© Stack Overflow or respective owner

Related posts about c#