a simple Window Form 11.000k of memory usage

G

Guest

if you start an iexplorer thats 11.836k and a simple form that contains
notting 11.588k

that makes .net heavy ? isn't it ... why this high memory consumption
happens what makes it in .NET ???





////////////////////////////////////////////////// simple form
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;

public class WindowsForm : System.Windows.Forms.Form
{
public static void Main()
{
Application.Run(new WindowsForm());
}

public WindowsForm()
{

}
}
 
E

Elp

Hi,

if you start an iexplorer thats 11.836k and a simple form that contains
notting 11.588k

that makes .net heavy ? isn't it ... why this high memory consumption
happens what makes it in .NET ???

This question has been asked over and over again. Google Group the
microsoft.public.dotnet.framework.performance and you'll find more post
about this "problem" than you would ever wish
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top