0x49D1
0x49D1

Reputation: 8704

.net application size in memory

What are the ways to reduce the amount of memory my applications take in RAM?..Because even 30kb application loads ~20Mb of "unneeded" dlls.Am i mistaking when i think that any .NET app takes at least 10Mb in working set of memory when we need a form with text in it? Couldn't find any explanation of this :(

PS question is closed. But i suggest everyone interested in how CLR works read this: CLR via C#

Upvotes: 3

Views: 829

Answers (2)

Xn0vv3r
Xn0vv3r

Reputation: 18184

I found this post helpful.

Upvotes: 3

abatishchev
abatishchev

Reputation: 100328

First .NET application launch takes a lot of memory to load a lot of .NET internal data, but all other launches of this application or another one would take a significantly less.

Upvotes: 3

Related Questions