a simple Window Form 11.000k of memory usage

  • Thread starter Thread starter Guest
  • Start date Start date
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()
{

}
}
 
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
 
Back
Top