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()
{
}
}
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()
{
}
}