Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Memory Management

Memory Management

Scheduled Pinned Locked Moved C#
questioncsharpperformance
19 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Christian Graus

    Short answer Gc.Collect;. Long answer - don't. The framework has been optimised already, fighting it like this will only hurt performance. What's the issue, are you running out of memory ? Christian Graus - Microsoft MVP - C++

    V Offline
    V Offline
    VickyC
    wrote on last edited by
    #10

    Right now I am not running out of memory. But when the code will go into production I am sure that I will have a high risk to run out of memory.

    C 1 Reply Last reply
    0
    • V VickyC

      Right now I am not running out of memory. But when the code will go into production I am sure that I will have a high risk to run out of memory.

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #11

      VickyC# wrote: But when the code will go into production I am sure that I will have a high risk to run out of memory. From opening a few forms ? What's on them ? If it's bitmaps, make sure you dispose of them. If they are just normal forms, are you expecting to run on machines with < 64 MB of memory ? Christian Graus - Microsoft MVP - C++

      V 1 Reply Last reply
      0
      • C Christian Graus

        VickyC# wrote: But when the code will go into production I am sure that I will have a high risk to run out of memory. From opening a few forms ? What's on them ? If it's bitmaps, make sure you dispose of them. If they are just normal forms, are you expecting to run on machines with < 64 MB of memory ? Christian Graus - Microsoft MVP - C++

        V Offline
        V Offline
        VickyC
        wrote on last edited by
        #12

        Well here is the pattern, it just keeps tagging some memory and then at some point memory is released but it never reaches the initial amount. So when the app will run for an extendend period of time it seems that I will have an issue. Yes, my question is when a form is disposed do all the children get disposed? Or I need to dispose each one.

        C 1 Reply Last reply
        0
        • V VickyC

          Well here is the pattern, it just keeps tagging some memory and then at some point memory is released but it never reaches the initial amount. So when the app will run for an extendend period of time it seems that I will have an issue. Yes, my question is when a form is disposed do all the children get disposed? Or I need to dispose each one.

          C Offline
          C Offline
          Christian Graus
          wrote on last edited by
          #13

          VickyC# wrote: Well here is the pattern, it just keeps tagging some memory and then at some point memory is released but it never reaches the initial amount. So when the app will run for an extendend period of time it seems that I will have an issue. You cannot run out of memory, because if things get to a critical level, the framework will force a collectitself. It will also perform a collect periodically. Any objects that are not used for long are quickly cleaned up. Objects that are used for a long time are cached for a long time, which is what you're fighting when you force the collection yourself. VickyC# wrote: Yes, my question is when a form is disposed do all the children get disposed? Or I need to dispose each one. You don't need to dispose of any forms. You only need to dispose of resources such as bitmaps. But yes, if there is an object tree and the object impliments IDisposable, the dispose method should clean all of it. Christian Graus - Microsoft MVP - C++

          V D 2 Replies Last reply
          0
          • C Christian Graus

            VickyC# wrote: Well here is the pattern, it just keeps tagging some memory and then at some point memory is released but it never reaches the initial amount. So when the app will run for an extendend period of time it seems that I will have an issue. You cannot run out of memory, because if things get to a critical level, the framework will force a collectitself. It will also perform a collect periodically. Any objects that are not used for long are quickly cleaned up. Objects that are used for a long time are cached for a long time, which is what you're fighting when you force the collection yourself. VickyC# wrote: Yes, my question is when a form is disposed do all the children get disposed? Or I need to dispose each one. You don't need to dispose of any forms. You only need to dispose of resources such as bitmaps. But yes, if there is an object tree and the object impliments IDisposable, the dispose method should clean all of it. Christian Graus - Microsoft MVP - C++

            V Offline
            V Offline
            VickyC
            wrote on last edited by
            #14

            thanks

            1 Reply Last reply
            0
            • D Dave Kreskowiak

              VickyC# wrote: for all practical purposes it seems good enough for watching what happens to memory The Task Manager is actually lousy at showing what's really going on inside the virtual machine that is the managed execution environment of the .NET Framework. What you're seeing in Task Manager is the amount of memory reserved for the entire virtual machine that you application runs in, not just your application code. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

              M Offline
              M Offline
              Matt Gerrans
              wrote on last edited by
              #15

              Not only that, but you'll see this same phenomenon with unmanaged apps, where you allocate memory, then free it, but Task Manager does not show you going back to the original amount. If you don't believe me, write yourself a little C++ app that allocates a few meg on the click of a button and frees it on another click and watch in Task Manager. So, it is not only the CLR that does this thing of not fully releasing dereferenced memory, but also the OS itself. That is because they both have the expecatation that an app will probably repeat its past behavior, so why waste all the extra cycles completely releasing the memory, then going to reallocate it a short time later. If that memory really is not used by the app again and other apps need it, that more complete deallocation will take place. You can use the SetProcessWorkingSetSize() API function to hurry up and "collect" the the memory that your app has released. I had an app that would use a few meg of memory infrequently and got some complaints that it was taking up too much memory (people looking at Task Manager); I added a call to SetProcessWorkingSetSize() right before it went into its "background" mode and it showed up quite tiny in Task Manager (I forget the exact numbers, but it went from several meg, to a few K). Keep in mind though, that this is only for cosmetic purposes and doesn't really make your app use memory more efficiently or anything like that (and in fact may make your app perform worse, since when it does try to use that memory again, it will probably be slower in getting it). Matt Gerrans

              1 Reply Last reply
              0
              • C Christian Graus

                VickyC# wrote: Well here is the pattern, it just keeps tagging some memory and then at some point memory is released but it never reaches the initial amount. So when the app will run for an extendend period of time it seems that I will have an issue. You cannot run out of memory, because if things get to a critical level, the framework will force a collectitself. It will also perform a collect periodically. Any objects that are not used for long are quickly cleaned up. Objects that are used for a long time are cached for a long time, which is what you're fighting when you force the collection yourself. VickyC# wrote: Yes, my question is when a form is disposed do all the children get disposed? Or I need to dispose each one. You don't need to dispose of any forms. You only need to dispose of resources such as bitmaps. But yes, if there is an object tree and the object impliments IDisposable, the dispose method should clean all of it. Christian Graus - Microsoft MVP - C++

                D Offline
                D Offline
                Dave Kreskowiak
                wrote on last edited by
                #16

                Christian Graus wrote: You don't need to dispose of any forms. Not entirely true. If you call .ShowDialog() on any form, you have to .Dispose() it when you're done with it. From the MSDN Gospel: When a form is displayed as a modal dialog box, clicking the close form button (the button with an "X" at the top right of the form) causes the form to be hidden and the DialogResult property to be set to DialogResult.Cancel. Unlike modeless forms, the Close method is not called by the .NET Framework when the user clicks the close form button of a dialog box or sets the value of the DialogResult property. Instead the form is hidden and can be shown again without creating a new instance of the dialog box. Because a form displayed as a dialog box is not closed, you must call the Dispose method of the form when the form is no longer needed by your application. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

                C 1 Reply Last reply
                0
                • D Dave Kreskowiak

                  Christian Graus wrote: You don't need to dispose of any forms. Not entirely true. If you call .ShowDialog() on any form, you have to .Dispose() it when you're done with it. From the MSDN Gospel: When a form is displayed as a modal dialog box, clicking the close form button (the button with an "X" at the top right of the form) causes the form to be hidden and the DialogResult property to be set to DialogResult.Cancel. Unlike modeless forms, the Close method is not called by the .NET Framework when the user clicks the close form button of a dialog box or sets the value of the DialogResult property. Instead the form is hidden and can be shown again without creating a new instance of the dialog box. Because a form displayed as a dialog box is not closed, you must call the Dispose method of the form when the form is no longer needed by your application. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

                  C Offline
                  C Offline
                  Christian Graus
                  wrote on last edited by
                  #17

                  Dave Kreskowiak wrote: clicking the close form button (the button with an "X" at the top right of the form) causes the form to be hidden and the DialogResult property to be set to DialogResult.Cancel. Bloody hell - I didn't know that. How stupid !!! So clicking OK or Cancel will destroy it, but clicking the X does not ? Christian Graus - Microsoft MVP - C++

                  D 1 Reply Last reply
                  0
                  • C Christian Graus

                    Dave Kreskowiak wrote: clicking the close form button (the button with an "X" at the top right of the form) causes the form to be hidden and the DialogResult property to be set to DialogResult.Cancel. Bloody hell - I didn't know that. How stupid !!! So clicking OK or Cancel will destroy it, but clicking the X does not ? Christian Graus - Microsoft MVP - C++

                    D Offline
                    D Offline
                    Dave Kreskowiak
                    wrote on last edited by
                    #18

                    :laugh: Silly! Isn't it? RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

                    V 1 Reply Last reply
                    0
                    • D Dave Kreskowiak

                      :laugh: Silly! Isn't it? RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

                      V Offline
                      V Offline
                      VickyC
                      wrote on last edited by
                      #19

                      Thanks for the tips. I will try your suggestions. I just want to comment that the behavior of C# reminds me applications with embedded languages and the end result is that there is memory leak period.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups