active questions tagged dispose - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:40:55Z http://stackoverflow.com/feeds/tag/dispose http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/913228/should-i-dispose-dataset-and-datatable 12 Should I Dispose() DataSet and DataTable? mbeckish 2009-05-26T23:08:09Z 2009-12-01T16:24:00Z <p>DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.</p> <p>However, from what I've read so far, DataSet and DataTable don't actually have any unmanaged resources, so Dispose() doesn't actually do much.</p> <p>Plus, I can't just use <code>using(DataSet myDataSet...)</code> because DataSet has a collection of DataTables.</p> <p>So, to be safe, I'd need to iterate through myDataSet.Tables, dispose of each of the DataTables, then dispose of the DataSet.</p> <p>So, is it worth the hassle to call Dispose() on all of my DataSets and DataTables?</p> <p><strong>Addendum:</strong></p> <p>For those of you who think that DataSet should be disposed: In general, the pattern for disposing is to use <code>using</code> or <code>try..finally</code>, because you want to guarantee that Dispose() will be called.</p> <p>However, this gets ugly real fast for a collection. For example, what do you do if one of the calls to Dispose() thrown an exception? Do you swallow it (which is "bad") so that you can continue on to dispose the next element?</p> <p>Or, do you suggest that I just call myDataSet.Dispose(), and forget about disposing the DataTables in myDataSet.Tables? </p> http://stackoverflow.com/questions/245856/when-should-i-dispose-my-objects-in-net 6 When should I dispose my objects in .NET? danmine 2008-10-29T05:10:13Z 2009-11-30T09:51:16Z <p>For general code, do I really need to dispose an object? Can I just ignore it for the most part or is it a good idea to always dispose an object when your 100% sure you don't need it anymroe? </p> http://stackoverflow.com/questions/1755597/c-do-i-need-to-dispose-a-backgroundworker-created-at-runtime 4 C#: Do I need to dispose a BackgroundWorker created at runtime? Rick 2009-11-18T12:18:13Z 2009-11-28T04:53:53Z <p>I typically have code like this on a form:</p> <pre><code> private void PerformLongRunningOperation() { BackgroundWorker worker = new BackgroundWorker(); worker.DoWork += delegate { // perform long running operation here }; worker.RunWorkerAsync(); } </code></pre> <p>This means that I don't dispose the BackgroundWorker, whereas if I had added it by the form designer then I think it would get disposed.</p> <p>Will this cause any problems? Is it more correct to declare a module-level _saveWorker, and then call Dispose on it from the form's dispose?</p> http://stackoverflow.com/questions/1808036/is-sqlcommand-dispose-required-if-associated-sqlconnection-will-be-disposed 0 Is SqlCommand.Dispose() required if associated SqlConnection will be disposed? abatishchev 2009-11-27T10:47:21Z 2009-11-27T12:15:12Z <p>I usually use code like this:</p> <pre><code>using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString)) { var command = connection.CreateCommand(); command.CommandText = "..."; connection.Open(); command.ExecuteNonQuery(); } </code></pre> <p>Will my <code>command</code> automatically disposed? Or not and I have to wrap it into <code>using</code> block? Is it required to dispose <code>SqlCommand</code>?</p> http://stackoverflow.com/questions/1783047/c-autosave-cleanup-best-practice 0 C# AutoSave cleanup; best practice? David Rutten 2009-11-23T13:09:02Z 2009-11-23T13:25:06Z <p>I've got a class that represents a document (GH_Document). GH_Document has an AutoSave method on it which is called prior to every potentially dangerous operation. This method creates (or overwrites) an AutoSave file next to the original file.</p> <p>GH_Document also contains a method called DestroyAutoSaveFiles() which removes any and all files from the disk that have been created by the AutoSave function. I call this method on documents when the app closes down, and also when documents get unloaded. However, it appears I missed a few cases since AutoSave files are still present after some successful shutdowns.</p> <p>So this got me thinking. What's the best way to handle situations like this? Should I track down all possible ways in which documents can disappear and add autosave cleanup logic everywhere? Or should I implement IDisposable and perform cleanup in GH_Document.Dispose()? Or should I do this in GH_Document.Finalize()?</p> <p>The only time I want an autosave file to remain on disk is if the application crashes. Are Dispose and Finalize guaranteed to not be called in the event of a crash?</p> http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net 3 Do I need to dispose a web service reference in ASP.NET? BeaverProj 2009-01-09T19:58:14Z 2009-11-21T17:06:46Z <p>Does the garbage collector clean up web service references or do I need to call dispose on the service reference after I'm finished calling whatever method I call?</p> http://stackoverflow.com/questions/1769463/how-to-do-the-clean-up 1 How-to do the clean up ? unknown (yahoo) 2009-11-20T09:55:48Z 2009-11-20T10:00:56Z <p>I have this code.</p> <p>A base class that create a new instance of the context.</p> <pre><code>public class Base { private Entities context; public Base() { context = new Entities(); } } </code></pre> <p>And than the classes that inherit from this class.</p> <pre><code>public class SomeService : Base { public Gallery Get(int id) { return context.GallerySet.FirstOrDefault(g =&gt; g.id == id); } } </code></pre> <p>The question is,how to take care of disposing the context object ? I was thinking about a destructor in the base clas, where I would just call the dispose method of the context object.</p> <pre><code>~Base() { context.Dispose(); } </code></pre> <p>Would be this enough ? Or is there any other way to take care of the context object ?</p> http://stackoverflow.com/questions/1754415/garbagecollector-dispose-or-static-methods 0 GarbageCollector, Dispose or static Methods? Kovu 2009-11-18T08:22:52Z 2009-11-18T08:57:08Z <p>Hi guys,</p> <p>I developed a few classes last month. They grow big (round 30-40 Methods each class).</p> <p>I never take a thought of Memory Leaks, GarbageColletor or something like this (I must say this is my first own big project).</p> <p>Now I have classes with Methods, 15 Classes Round About, each class min. 20 methods. 50% are Linq-Classes in the DAL, 50% BusinessClasses with BusinessLogic. NO Class uses global variables (no need), so theoretically I can make them static classes + methods. At the moment they aren't, I initialize a class object and use the class - and not disposing it.</p> <p>Where I should start when I be angry of having Memory Leaks etc. when the system runs by ~100 users?</p> http://stackoverflow.com/questions/1751258/when-do-i-need-to-dispose-objects-in-vba 1 When do I need to dispose objects in VBA Irwin M. Fletcher 2009-11-17T19:42:09Z 2009-11-17T19:54:29Z <p>While looking at this code (most of which has been removed for simplification of this question), I started to wonder if I need to dispose of the collection or class that I used.</p> <pre><code>Option Explicit Private terminals As Collection Sub BuildTerminalSummary() Dim terminal As clsTerminal Call LoadTerminals For Each terminal in terminals ...Do work here Next terminal Set terminals = Nothing End Sub Private Sub LoadTerminals() Do Set terminal = New clsTerminal ...Do work here 'Add terminal to terminals collection terminals.Add terminal, key Loop Until endCondition End Sub </code></pre> <p>When dealing with VBA, when should I dispose of an object (if ever)?</p> http://stackoverflow.com/questions/1011537/why-is-nhibernate-adotransactions-finalizer-called 1 Why is NHibernate AdoTransaction's finalizer called? ripper234 2009-06-18T08:46:03Z 2009-11-12T14:34:41Z <p>I'm profiling out unit &amp; integration tests, and I find the a lot of the time is spent on the finalizer of NHibernate.Transaction.AdoTransaction - this means it is not getting disposed properly.</p> <p>I am not using AdoTransaction directly in the code, so it's probably used by some other object inside NHibernate. Any idea what I'm forgetting to Dispose?</p> <p>Here is my text fixture:</p> <pre><code>public abstract class AbstractInMemoryFixture { protected ISessionFactory sessionFactory; protected ILogger Logger { get; private set; } static readonly Configuration config; private static readonly ISessionFactory internalSessionFactory; static AbstractInMemoryFixture() { config = new NHibernateConfigurator().Configure(NHibernateConfigurators.SQLiteInMemory()); internalSessionFactory = config.BuildSessionFactory(); } [SetUp] public void SetUp() { const string sqliteInMemoryConnectionString = "Data Source=:memory:;Version=3;Pooling=False;Max Pool Size=1;"; var con = new SQLiteConnection(sqliteInMemoryConnectionString); con.Open(); new SchemaExport(config).Execute(false, true, false, true, con, System.Console.Out); var proxyGenerator = new ProxyGenerator(); sessionFactory = proxyGenerator.CreateInterfaceProxyWithTarget(internalSessionFactory, new UseExistingConnectionInterceptor(con)); Logger = new NullLogger(); ExtraSetup(); } [TearDown] public void TearDown() { var con = sessionFactory.OpenSession().Connection; if (con != null) { if (con.State == ConnectionState.Open) con.Close(); con.Dispose(); } } private class UseExistingConnectionInterceptor :IInterceptor { private readonly SQLiteConnection connection; public UseExistingConnectionInterceptor(SQLiteConnection connection) { this.connection = connection; } public void Intercept(IInvocation invocation) { if (invocation.Method.Name != "OpenSession" || invocation.Method.GetParameters().Length &gt; 0) { invocation.Proceed(); return; } var factory = (ISessionFactory) invocation.InvocationTarget; invocation.ReturnValue = factory.OpenSession(connection); } } protected virtual void ExtraSetup() { } } </code></pre> http://stackoverflow.com/questions/732864/finalize-vs-dispose 4 Finalize vs Dispose tush1r 2009-04-09T05:00:43Z 2009-11-10T14:55:22Z <p>Why do some people use the <code>Finalize</code> method over the <code>Dispose</code> method? </p> <p>In what situations would you use the <code>Finalize</code> method over the <code>Dispose</code> method and vice versa?</p> http://stackoverflow.com/questions/1703637/c-abstract-dispose-method 0 C# abstract Dispose method Sarah Vessels 2009-11-09T20:40:10Z 2009-11-09T22:09:08Z <p>I have an abstract class that implements IDisposable, like so:</p> <pre><code>public abstract class ConnectionAccessor : IDisposable { public abstract void Dispose(); } </code></pre> <p>In Visual Studio 2008 Team System, I ran Code Analysis on my project and one of the warnings that came up was the following:</p> <blockquote> <p>Microsoft.Design : Modify 'ConnectionAccessor.Dispose()' so that it calls Dispose(true), then calls GC.SuppressFinalize on the current object instance ('this' or 'Me' in Visual Basic), and then returns.</p> </blockquote> <p>Is it just being silly, telling me to modify the body of an abstract method, or should I do something further in any derived instance of <code>Dispose</code>?</p> http://stackoverflow.com/questions/1703213/c-is-there-an-advantage-to-disposing-resources-in-reverse-order-of-their-alloca 2 C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation? Bob Kaufman 2009-11-09T19:30:22Z 2009-11-09T19:47:26Z <p>Many years ago, I was admonished to, whenever possible, release resources in reverse order to how they were allocated. That is:</p> <pre><code>block1 = malloc( ... ); block2 = malloc( ... ); ... do stuff ... free( block2 ); free( block1 ); </code></pre> <p>I imagine on a 640K MS-DOS machine, this could minimize heap fragmentation. Is there any practical advantage to doing this in a C# /.NET application, or is this a habit that has outlived its relevance?</p> http://stackoverflow.com/questions/672980/dispose-on-user-controls-really-meant-to-edit-the-designer-cs-file 1 Dispose on user controls, really meant to edit the .designer.cs file? Lasse V. Karlsen 2009-03-23T11:12:57Z 2009-11-07T11:31:32Z <p>For a user control with internal data structures that must be disposed, is the correct place to add that code to the Dispose method in the .designer.cs file, or is there an event or something we're meant to use instead?</p> <p><strong>Edit</strong>: This is a winforms user control.</p> http://stackoverflow.com/questions/1691846/does-garbage-collector-call-dispose 0 Does garbage collector call Dispose()? RichAmberale 2009-11-07T03:11:36Z 2009-11-07T03:45:23Z <p>I thought the GC would call Dispose eventually if your program did not but that you should call Dispose() in your program just to make the cleanup deterministic.</p> <p>However, from my little test program, I don't see Dispose getting called at all....</p> <pre><code>public class Test : IDisposable { static void Main(string[] args) { Test s = new Test(); s = null; GC.Collect(); Console.ReadLine(); } public Test() { Console.WriteLine("Constructor"); } public void Dispose() { Console.WriteLine("Dispose"); } } </code></pre> <p>// Output is just "Constructor", I don't get "Dispose" as I would expect. What's up?</p> <p><strong>EDIT:</strong> Yes, I know I should call Dispose() - I do follow the standard pattern when using disposable objects. My question arises because I'm trying to track down a leak in somebody elses code, which is managed C++ (another layer of complexity that would be the good subject of another thread).</p> http://stackoverflow.com/questions/1690046/net-winforms-application-not-releasing-components 0 .NET WinForms application not releasing components? Ken 2009-11-06T20:07:30Z 2009-11-06T22:06:33Z <p>Hello:</p> <p>I'm working with a .NET 2.0 WinForms application in C#.</p> <p>I noticed something that I thought to be strange during the tear down of my application. In the designer generated dispose method:</p> <pre><code> protected override void Dispose(bool disposing) { if (disposing &amp;&amp; (components != null)) { components.Dispose(); } base.Dispose(disposing); } </code></pre> <p>I'm seeing a situation where it is passing in <code>disposing = false</code> parameter when <code>components</code> does indeed contain some items. This leads me to believe that these resources are not getting disposed correctly/released because <code>components.Dispose();</code> is not getting called. Is this ever desired behavior?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1632980/c-why-accesing-listbox-selecteditem-tostring-the-form-tries-to-dispose -1 C# Why Accesing ListBox.SelectedItem.ToString(), the form tries to dispose? josecortesp 2009-10-27T19:04:04Z 2009-10-27T19:13:13Z <p>Hey Guys. I'm developing a small POS for a university proyect. I have a form who acts as a POS main window, with a datagrid and so on. Also, i have one form who is the Sensitive search or Incremental search, and i want that form to, select one item in a listbox and return it to the main window. Now i have a property in the main wich gets that item as a string, and when the user clicks the OK button on the search form, i want to set that property on the main window. Everythings works great except one thing: when I try to access <code>listBox_Codigo.SelectedItem.ToString();</code> the app tries to dispose and closes all windows... Anybody knows Why??? I just need the selected string in that listbox and set it to the main window like this:</p> <pre><code>var Principal = (PDQ.Cajero)this.ParentForm; Principal.CodigoInsertado = listBox_Codigo.SelectedItem.ToString(); this.DialogResult = DialogResult.OK; this.Close(); </code></pre> <p>where PDQ.Cajero is the main form, who calls this form. Thanks in advance UPDATE: I just finished debuggin it, and rigth after the program gets to <code>listBox_Codigo.SelectedItem.ToString();</code> the program jumps to Dispose();</p> <p><strong>UPDATE 2</strong> This is my complete method:</p> <pre><code>private void button1_Click(object sender, EventArgs e) { if (listBox_Codigo.SelectedItem == null) { if (MessageBox.Show(this, "No se puede ingresar un producto sin seleccionarlo.\n ¿Desea intentarlo de nuevo, o Salir?", "Error", MessageBoxButtons.RetryCancel, MessageBoxIcon.Exclamation) == DialogResult.Cancel) { DialogResult = DialogResult.Cancel; this.Close(); } } else { var Principal = (PDQ.Cajero)this.ParentForm; Principal.CodigoInsertado = listBox_Codigo.SelectedItem.ToString(); this.DialogResult = DialogResult.OK; this.Close(); } } </code></pre> <p>So the problem is not if the value is null</p> http://stackoverflow.com/questions/1625135/javascript-know-when-an-object-will-be-garbaged 0 Javascript: know when an object will be garbaged blow 2009-10-26T14:27:38Z 2009-10-26T15:24:07Z <p>Hi all, is there a way to know when an object will be disposed by GC?</p> <p>My object (call it A) write some variables in a global array-object, so when the object will be garbaged its own variable will stay in the global array-object, taking up memory.</p> <p>ps. i have numerous objects A and i prefer to not call "manually" a method to free my global array-object.</p> <p>This is my situation:</p> <pre><code>var global_array=[]; function A(x){ global_array.push({who:"A", what:x, id:A.instance++}); this.x=x; } A.instance=0; A.prototype.useIt=function(){ return this.x*2; } //will be created an A object and will be garbaged after use by GC function test(){ var a=new A(10); var y=a.useIt(); } test(); //i will never use &lt;a&gt; object again, but global_array hold {who:"A", what:10, id:0)} </code></pre> <p><strong>DO NOT WANT</strong></p> <pre><code>A.prototype.dispose=function(){ // free global_array at the correct index } </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1030455/how-to-handle-exception-thrown-from-dispose 1 How to handle exception thrown from Dispose? Morgan Cheng 2009-06-23T03:04:17Z 2009-10-24T06:46:22Z <p>Recently, I was researching some tricky bugs about object not disposed.</p> <p>I found some pattern in code. It is reported that some m_foo is not disposed, while it seems all instances of SomeClass has been disposed.</p> <pre><code>public class SomeClass: IDisposable { void Dispose() { if (m_foo != null) { m_foo.Dispose(); } if (m_bar != null) { m_bar.Dispose(); } } private Foo m_foo; private Bar m_bar; } </code></pre> <p>I suspects that Foo.Dispose might throw a exception, so that following code is not executed so m_bar is not disposed. </p> <p>Since Foo/Bar might be from third party, so it is not guaranteed to not throwing exception. </p> <p>If just wrap all Dispose invocation with try-catch, the code will turn to be clumsy.</p> <p>What's best practice to handle this?</p> http://stackoverflow.com/questions/1547551/strange-gdi-behaviour 0 Strange GDI+ behaviour. Binder 2009-10-10T10:07:33Z 2009-10-21T13:15:06Z <p>I have made a method to CompressImageSize according to Image quality. The code for it is</p> <pre><code>public static Image CompressImage(string imagePath, long quality) { Image srcImg = LoadImage(imagePath); //Image srcImg = Image.FromFile(imagePath); EncoderParameters parameters = new EncoderParameters(1); parameters.Param[0] = new EncoderParameter(Encoder.Quality, quality); ImageCodecInfo encoder = GetCodecInfo("image/jpeg"); srcImg.Save("d:\\creatives\\abcd123.jpg", encoder, parameters); } public static Image LoadImage(string filename) { using (FileStream fs = new FileStream(filename, FileMode.Open)) { return(Image.FromStream(fs)); } } </code></pre> <p>Now, when i run this code as is it gives me a 'Generic GDI+ exception' while saving the srcImg(last line in func #1), BUT when i uncomment the 2nd line and load the image using Image.FromFile everything works fine.</p> <p>Why ??</p> http://stackoverflow.com/questions/1577640/event-sender-gets-disposed-in-clients-event-handler-code 1 Event Sender Gets Disposed In Client's Event Handler Code 7enderhead 2009-10-16T11:57:07Z 2009-10-19T23:48:23Z <p>Hello,</p> <p>I'm facing the following situation (C#/.Net here, but I think it's a general problem):</p> <ul> <li>Some of our object types (which are collections) are disposable types (IDisposable in C#, which allows clients to explicitly tell an object 'you are not needed anymore, free all of your resources')</li> <li>These collections fire events ('oh my, look, somebody just added/removed/changed an element').</li> <li>During the running of the collection's client's event handler code, this code decides to dispose the object which has just been sending the event (which, semantically, is a correct action; example: now the collection does not contain any object of interest to me anymore, so I'll get rid of it).</li> </ul> <p>This of course wreaks havoc upon the sending objects.</p> <p>The current 'solution' is to safeguard (i.e., disallow) disposing while the events are fired:</p> <p><code></p> <pre><code>private bool m_AllowDisposal; private void MeFiringEvents() { m_AllowDisposal = false; // Fire event if (m_MyEventHandlers != null) { m_MyEventHandlers(...); } m_AllowDisposal = true; } public void IDisposable.Dispose() { if (m_AllowDisposal) { // Dispose resources, set members to null, etc } } </code></pre> <p></code></p> <p>As you can see, this is no real solution, since disposal for the event's sender is effectively inhibited during client's event handling code.</p> <p>Any other solution I could come up with would be along the lines</p> <ul> <li>After each firing of events, check whether disposal (or any other 'bad' modification to the object) has happened in client's event handler code.</li> <li>Get out of the sender's code (which can be deeply nested until it reaches the event firing) in a defensive way.</li> </ul> <p>Interestingly, I did not find any useful information on that topic on the net, although it seems like a general showstopper.</p> <p>Perhaps you have got an idea.</p> <p>Thanks for your consideration,</p> <p>Christian</p> http://stackoverflow.com/questions/1591455/am-i-responsible-for-disposing-a-backgroundimage 0 Am I responsible for Disposing a BackgroundImage? Keith Moore 2009-10-19T22:21:02Z 2009-10-19T22:31:16Z <p>Hi, I have a windows form where I set the BackgroundImage property to a custom bitmap image.</p> <pre> private Image MakeCustomBackground() { Bitmap result = new Bitmap(100, 100); using(Graphics canvas = Graphics.FromImage(result)) { // draw the custom image } return result; } private void UpdateFromBackground() { this.BackgroundImage = MakeCustomBackground(); } </pre> <p>My question is, Image is disposable and I am creating it, does that mean that I must dispose of it? Or when I pass the image to the form, via BackgroundImage, does it take ownership and dispose of it when it no longer needs it?</p> http://stackoverflow.com/questions/1579199/purpose-of-dispose-calling-disposeisdisposing-pattern-in-c 2 Purpose of Dispose calling Dispose(IsDisposing) pattern in C#? RichAmberale 2009-10-16T16:58:10Z 2009-10-16T17:04:11Z <p>Here is code from <a href="http://msdn.microsoft.com/en-us/library/fs2xkftw.aspx" rel="nofollow">MSDN</a>. I don't understand why the work isn't just done in the regular Dispose() method here. What is the purpose of having the Dispose(bool) method? Who would ever call Dispose(false) here?</p> <pre><code>public void Dispose() { Dispose(true); // Use SupressFinalize in case a subclass // of this type implements a finalizer. GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { // If you need thread safety, use a lock around these // operations, as well as in your methods that use the resource. if (!_disposed) { if (disposing) { if (_resource != null) _resource.Dispose(); Console.WriteLine("Object disposed."); } // Indicate that the instance has been disposed. _resource = null; _disposed = true; } } </code></pre> http://stackoverflow.com/questions/1572804/do-i-need-to-call-graphics-dispose 1 Do I need to call Graphics.Dispose()? alnorth29 2009-10-15T14:38:12Z 2009-10-15T14:41:43Z <p>In a VB.NET program I'm creating a new bitmap image, I then call Graphics.FromImage to get a Graphics object to draw on the bitmap. The image is then displayed to the user.</p> <p>All the code samples I've seen always call .Dispose() on Bitmaps and Graphics objects, but is there any need to do that when neither have touched files on disk? Are there any other unmanaged resources that these objects might have grabbed that wouldn't be cleared by the garbage collector?</p> http://stackoverflow.com/questions/1559227/does-a-wrapper-class-calling-a-com-component-through-c-need-to-implement-the-dis 3 Does a wrapper class calling a COM component through C# need to implement the Dispose pattern? Sci-fi 2009-10-13T09:54:40Z 2009-10-13T10:11:27Z <p>I have a class written in c# which is acting as a wrapper around a COM component. The COM component is early bound and the RCW has been generated by Visual Studio. Should I implement a dispose pattern in my wrapper class to clean up the COM reference, or should I just let the GC handle it, as it already has a RCW?</p> http://stackoverflow.com/questions/1550212/proper-cleanup-of-wpf-user-controls 1 Proper cleanup of WPF user controls jrista 2009-10-11T08:56:54Z 2009-10-11T20:53:41Z <p>I am relatively new to WPF, and some things with it are quite foreign to me. For one, unlike Windows Forms, the WPF control hierarchy does not support IDisposable. In Windows Forms, if a user control used any managed resources, it was very easy to clean up the resources by overriding the Dispose method that every control implemented. </p> <p>In WPF, the story is not so simple. I have searched for this for several hours, and encountered to themes:</p> <p>The first theme is Microsoft clearly stating that WPF does not implement IDisposable because the WPF controls have no unmanaged resources. While that may be true, they seem to have completely missed the fact that user extensions to their WPF class hierarchy may indeed use managed resources (directly or indirectly through a model). By not implementing IDisposable, Microsoft has effectively removed the only guaranteed mechanism by which unmanaged resources used by a custom WPF control or window can be cleaned up.</p> <p>Second, I found a few references to Dispatcher.ShutdownStarted. I have tried to use the ShutdownStarted event, but it does not seem to fire for every control. I have a bunch of WPF UserControl's that I have implemented a handler for ShutdownStarted, and it never gets called. I am not sure if it only works for Windows, or perhaps the WPF App class. However it is not properly firing, and I am leaking open PerformanceCounter objects every time the app closes. </p> <p>Is there a better alternative to cleaning up unmanaged resources than the Dispatcher.ShutdownStarted event? Is there some trick to implementing IDisposable such that Dispose will be called? I would much prefer to <strong>avoid</strong> using a finalizer if at all possible.</p> http://stackoverflow.com/questions/1534983/how-to-dispose-a-writeable-bitmap-wpf 0 How to dispose a Writeable Bitmap? (WPF) Mario 2009-10-08T00:30:40Z 2009-10-08T00:30:40Z <p>Some time ago i posted a question related to a WriteableBitmap memory leak, and though I received wonderful tips related to the problem, I still think there is a serious bug / (mistake made by me) / (Confusion) / (some other thing) here.</p> <p>So, here is my problem again:</p> <p>Suppose we have a WPF application with an Image and a button. The image's source is a really big bitmap (3600 * 4800 px), when it's shown at runtime the applicaton consumes ~90 MB.</p> <p>Now suppose i wish to instantiate a WriteableBitmap from the source of the image (the really big Image), when this happens the applications consumes ~220 MB.</p> <p>Now comes the tricky part, when the modifications to the image (through the WriteableBitmap) end, and all the references to the WriteableBitmap (at least those that I'm aware of) are destroyed (at the end of a method or by setting them to null) the memory used by the writeableBitmap should be freed and the application consumption should return to ~90 MB. The problem is that sometimes it returns, sometimes it does not.</p> <p>Here is a sample code:</p> <pre><code>// The Image's source whas set previous to this event private void buttonTest_Click(object sender, RoutedEventArgs e) { if (image.Source != null) { WriteableBitmap bitmap = new WriteableBitmap((BitmapSource)image.Source); bitmap.Lock(); bitmap.Unlock(); //image.Source = null; bitmap = null; } } </code></pre> <p>As you can see the reference is local and the memory should be released at the end of the method (Or when the Garbage collector decides to do so). However, the app could consume ~224 MB until the end of the universe.</p> <p>Any help would be great.</p> http://stackoverflow.com/questions/1531123/clearing-up-large-fields-from-memory-in-long-lived-objects 1 Clearing up large fields from memory in long lived objects dr. evil 2009-10-07T11:45:48Z 2009-10-07T12:07:34Z <p>.NET 3.5, I've got some classes which stores up to 1MB of strings. Even though I need the object for a really long time I don't need to store the string for a long time. </p> <p>How can I truly remove the string from memory without disposing the parent object.</p> <p>Is it a good practice to use "<code>myString = null</code>" in this case? or shall wrap it in a private dsposable class or something?</p> http://stackoverflow.com/questions/1519429/handling-with-temporary-file-stream 0 Handling with temporary file stream sh0gged 2009-10-05T11:03:58Z 2009-10-05T18:21:58Z <p>Say I want to define a TempFileStream class that creates a temporary file using Path.GetTempFileName() method. A temporary file must be deleted when TempFileStream's object is no longer needed, e.g. closed or disposed:</p> <pre><code>class TempFileStream: FileStream { string m_TempFileName = Path.GetTempFileName(); public TempFileStream(FileMode fileMode): base(m_TempFileName,fileMode) {} /// ... public ovverride Dispose(bool disposing) { /// ??? } } </code></pre> <p>How should I implement this simply and safely? </p> http://stackoverflow.com/questions/1375822/when-exposing-iqueryable-when-does-datacontext-get-disposed 1 When exposing IQueryable when does DataContext get disposed? RR 2009-09-03T20:39:50Z 2009-10-04T03:34:15Z <p>As seems to be popular at the moment, if you implement a repository as simply</p> <pre><code>IQueryable&lt;T&gt; FetchAll&lt;T&gt;(); </code></pre> <p>using LINQ to SQL, then the repository must set up a DataContext which remains available outside of the repository.</p> <p>So my question is, How does the DataContext get Disposed? What if an exception is generated by the code outside of the repository? Will it be leaking database connections?</p> <p>Thanks</p>