Click here to Skip to main content
15,920,680 members
Home / Discussions / C#
   

C#

 
GeneralHelp Graph Excel Pin
JeremH24-Feb-08 22:52
JeremH24-Feb-08 22:52 
Generalregarding the memory handling Pin
karthikeyan198324-Feb-08 22:39
karthikeyan198324-Feb-08 22:39 
GeneralRe: regarding the memory handling Pin
N a v a n e e t h24-Feb-08 22:45
N a v a n e e t h24-Feb-08 22:45 
GeneralRe: regarding the memory handling Pin
karthikeyan198324-Feb-08 23:08
karthikeyan198324-Feb-08 23:08 
AnswerRe: regarding the memory handling Pin
Martin#24-Feb-08 22:52
Martin#24-Feb-08 22:52 
GeneralRe: regarding the memory handling Pin
Christian Graus24-Feb-08 22:56
protectorChristian Graus24-Feb-08 22:56 
GeneralRe: regarding the memory handling Pin
karthikeyan198324-Feb-08 23:37
karthikeyan198324-Feb-08 23:37 
GeneralRe: regarding the memory handling Pin
Scott Dorman25-Feb-08 18:24
professionalScott Dorman25-Feb-08 18:24 
It sounds like you are using TaskManager to look at your memory usage. You should use PerfMon instead since TaskManager is obly reporting the total amount of memory allocated to the runtime process not how much memory you are actually using.

You shouldn't make direct calls to GC.Collect as that will end up hurting your performance in the long run.

As long as you are properly disposing of your objects (make sure you are using a try..finally block or the using statement) you should be fine. If you really want to see what is going on, you will need to use a memory profiler like the CLR Profiler.

Scott.

—In just two days, tomorrow will be yesterday.
—Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai

[Forum Guidelines] [Articles] [Blog]

Generalfactorial calculation in c# Pin
ashutosh kumar jha24-Feb-08 22:20
ashutosh kumar jha24-Feb-08 22:20 
GeneralRe: factorial calculation in c# Pin
Colin Angus Mackay24-Feb-08 22:46
Colin Angus Mackay24-Feb-08 22:46 
GeneralRe: factorial calculation in c# Pin
Christian Graus24-Feb-08 22:57
protectorChristian Graus24-Feb-08 22:57 
GeneralRe: factorial calculation in c# Pin
Sathesh Sakthivel25-Feb-08 0:50
Sathesh Sakthivel25-Feb-08 0:50 
GeneralRe: factorial calculation in c# Pin
Vasudevan Deepak Kumar25-Feb-08 3:14
Vasudevan Deepak Kumar25-Feb-08 3:14 
QuestionRemotly controll Com Port? Pin
Harvey Saayman24-Feb-08 22:08
Harvey Saayman24-Feb-08 22:08 
AnswerRe: Remotly controll Com Port? Pin
Maruf Maniruzzaman24-Feb-08 23:38
Maruf Maniruzzaman24-Feb-08 23:38 
GeneralRe: Remotly controll Com Port? Pin
Harvey Saayman24-Feb-08 23:59
Harvey Saayman24-Feb-08 23:59 
GeneralRe: Remotly controll Com Port? Pin
Maruf Maniruzzaman25-Feb-08 0:37
Maruf Maniruzzaman25-Feb-08 0:37 
GeneralRe: Remotly controll Com Port? Pin
Harvey Saayman25-Feb-08 0:40
Harvey Saayman25-Feb-08 0:40 
AnswerRe: Remotly controll Com Port? Pin
Maruf Maniruzzaman25-Feb-08 1:02
Maruf Maniruzzaman25-Feb-08 1:02 
GeneralRe: Remotly controll Com Port? Pin
Harvey Saayman25-Feb-08 1:08
Harvey Saayman25-Feb-08 1:08 
GeneralLooking for a C# library Pin
kaminem24-Feb-08 21:57
kaminem24-Feb-08 21:57 
GeneralRe: Looking for a C# library Pin
Christian Graus24-Feb-08 22:01
protectorChristian Graus24-Feb-08 22:01 
GeneralRe: Looking for a C# library Pin
kaminem25-Feb-08 3:36
kaminem25-Feb-08 3:36 
Questionhow to generalize Pin
Petenasa24-Feb-08 21:47
Petenasa24-Feb-08 21:47 
GeneralRe: how to generalize Pin
Christian Graus24-Feb-08 22:01
protectorChristian Graus24-Feb-08 22:01 

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.