Click here to Skip to main content
15,905,686 members
Home / Discussions / C#
   

C#

 
GeneralTurn off computer Pin
yarns5-Jun-03 20:49
yarns5-Jun-03 20:49 
GeneralRe: Turn off computer Pin
J. Dunlap5-Jun-03 20:57
J. Dunlap5-Jun-03 20:57 
GeneralRe: Turn off computer Pin
Member 128221435-Jun-03 21:18
Member 128221435-Jun-03 21:18 
GeneralRe: Turn off computer Pin
Nathan Blomquist6-Jun-03 2:33
Nathan Blomquist6-Jun-03 2:33 
GeneralRe: Turn off computer Pin
Bo Hunter6-Jun-03 5:43
Bo Hunter6-Jun-03 5:43 
GeneralPassing array of strings to unmanaged code Pin
Anonymous5-Jun-03 20:03
Anonymous5-Jun-03 20:03 
GeneralMemory Usage...(RSS Bandit) Pin
Kant5-Jun-03 18:16
Kant5-Jun-03 18:16 
GeneralRe: Memory Usage...(RSS Bandit) Pin
Daniel Turini6-Jun-03 5:20
Daniel Turini6-Jun-03 5:20 
Kant wrote:
I am just curious, anybody know the answer?
Yes: people doesn't know the difference between the used memory and the working set size of a software.
What task manager is showing you is roughly the working set size. It's a very hard and time consuming thing to determine the real memory use of a program, specially if it uses GC.
Each thread on a .NET application receives a 1MB virtual stack. Notice the "virtual" word, it means that it can use up to 1MB of stack space, but it could be (and probably is) using even under 1Kb of this space. The memory is only drawn for Windows when is needed.
So, a simple .NET application may have a few threads for housekeeping, like GC, so, even the simplest .NET application can show a large number on Task Manager.
Most GC preallocates some memory for its use, and the .NET Fx's one is no exception.


Kant wrote:
Actually she replied back to me "You shouldn't fix the bug. You should kill it"
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
Kannan Kalyanaraman6-Jun-03 5:37
Kannan Kalyanaraman6-Jun-03 5:37 
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
shaunAustin6-Jun-03 12:13
shaunAustin6-Jun-03 12:13 
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
Kannan Kalyanaraman7-Jun-03 23:56
Kannan Kalyanaraman7-Jun-03 23:56 
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
Kant8-Jun-03 4:31
Kant8-Jun-03 4:31 
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
Kannan Kalyanaraman8-Jun-03 22:18
Kannan Kalyanaraman8-Jun-03 22:18 
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
James T. Johnson6-Jun-03 13:21
James T. Johnson6-Jun-03 13:21 
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
Daniel Turini6-Jun-03 21:50
Daniel Turini6-Jun-03 21:50 
GeneralRe: Memory Usage...(RSS Bandit) (OT) Pin
Kannan Kalyanaraman7-Jun-03 23:44
Kannan Kalyanaraman7-Jun-03 23:44 
GeneralRe: Memory Usage...(RSS Bandit) Pin
Kant6-Jun-03 5:45
Kant6-Jun-03 5:45 
Generalimplementing interface not in same dir as class Pin
zuhx5-Jun-03 10:42
zuhx5-Jun-03 10:42 
GeneralRe: implementing interface not in same dir as class Pin
Bo Hunter5-Jun-03 17:03
Bo Hunter5-Jun-03 17:03 
GeneralRe: implementing interface not in same dir as class Pin
zuhx5-Jun-03 19:56
zuhx5-Jun-03 19:56 
GeneralRe: implementing interface not in same dir as class Pin
shaunAustin5-Jun-03 21:56
shaunAustin5-Jun-03 21:56 
GeneralRe: implementing interface not in same dir as class Pin
zuhx6-Jun-03 5:57
zuhx6-Jun-03 5:57 
GeneralRe: implementing interface not in same dir as class Pin
shaunAustin6-Jun-03 9:05
shaunAustin6-Jun-03 9:05 
GeneralRe: implementing interface not in same dir as class Pin
zuhx6-Jun-03 11:00
zuhx6-Jun-03 11:00 
GeneralRe: implementing interface not in same dir as class Pin
shaunAustin6-Jun-03 12:06
shaunAustin6-Jun-03 12:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.