HI everyone,
I hope someone can help me on this.
I have form application that has 3 Timers that does an animation (changing an image for every interval)
Each image are loaded at start of application and saved into a Dictionary<stri ng, List<Image>>
The dictionary will have 5 items which is for 5 controls.
then each control will have this images in the dictionary(I also assigned the timers):
Timer 1 (Interval:100) = 110kb / image, 25 images, 425x165
Timer 2 (Interval: 25) = 72kb / image, 81 images, 615x810
Timer 3 (Interval: 50) = 10kb / image, 25 images, 249x169
Then 3 timers will be doing the animation for those 3 Dictionary.
Currently I will just use my task manager to read the memory usage of my application.
Without loading/playing the animation image: 220MB
With loading/playing the animation image : 1.3GB
NOTE: I have found out about CLRProfiler.exe but I may need some time to study how it is used and how to benefit from it and i am also having trouble showing the data when my application run.So just used task manager as of the moment.
Hoping for your positive replies.
TIA
-dantz
I hope someone can help me on this.
I have form application that has 3 Timers that does an animation (changing an image for every interval)
Each image are loaded at start of application and saved into a Dictionary<stri ng, List<Image>>
The dictionary will have 5 items which is for 5 controls.
then each control will have this images in the dictionary(I also assigned the timers):
Timer 1 (Interval:100) = 110kb / image, 25 images, 425x165
Timer 2 (Interval: 25) = 72kb / image, 81 images, 615x810
Timer 3 (Interval: 50) = 10kb / image, 25 images, 249x169
Then 3 timers will be doing the animation for those 3 Dictionary.
Currently I will just use my task manager to read the memory usage of my application.
Without loading/playing the animation image: 220MB
With loading/playing the animation image : 1.3GB
NOTE: I have found out about CLRProfiler.exe but I may need some time to study how it is used and how to benefit from it and i am also having trouble showing the data when my application run.So just used task manager as of the moment.
Hoping for your positive replies.
TIA
-dantz
Comment