Tagged Questions
0
votes
2answers
36 views
How certain types like Image can be Dispose using the Dispose() method
Let's say I have a large Image object, if I call the Dispose() method of this object I can easily see the memory consumption of my application be reduced, since I just cleared the object from memory.
...
0
votes
2answers
52 views
Types that own disposable fields should be disposable. how to solve this warning?
I tried using Run Code Analysis option in VisualStudio 2012, as a result of it I got a warning as
CA1001 Types that own disposable fields should be disposable
Implement IDisposable on ...
1
vote
1answer
52 views
Do I win memory by explicitly disposing imageView.Image?
I have this code in my app:
var newImage = // ...
if (imageView.Image != null && imageView.Image != newImage)
imageView.Image.Dispose ();
imageView.Image = newImage;
I have three ...
0
votes
0answers
47 views
Proper Location to Call Dispose/Close for ManualResetEvent in C# Form Application
I am trying to do the right thing and call Dispose on my ManualResetEvent(s), but they need to be around (since multithreaded application with button clicks that rely on the events) until the form is ...
0
votes
1answer
47 views
C# - idea behind instantiating BitMap object twice to avoid locking problems
I had a problem with deleting image that was opened in a PictureBox. Thanks to Hans Passant I got a solution for this problem using this snippet proposed by him :
using (var temp = new ...
3
votes
4answers
100 views
Calling dispose within list.removeAll
I'm pretty new to C# programming, and the concept of the GC, and its realtions to IDisposable is still a bit vague. What does calling Dispose mean in terms of the garbage collection?
Specifically i ...
5
votes
2answers
866 views
VB.net Garbage collector not releasing objects
First of all, thanks in advance for your help.
I've decided to ask for help in forums like this one because after several months of hard working, I couldn't find a solution for my problem.
This ...
1
vote
2answers
121 views
Disposing objects in .NET?
Looking at 'System.IO.File.AppendAllText' code from the GAC it calls another method called 'InternalAppendAllText' which creates a new StreamWriter and writes the content to the file.
//mscorlib, ...
5
votes
2answers
108 views
Cleanup before termination?
This question has been bugging me for a while: I've read in MSDN's DirectX article the following:
The destructor (of the application) should release any (Direct2D) interfaces stored...
...
2
votes
1answer
69 views
When will object be disposed if created only for parameter to function?
Compare:
Using Response As WebResponse = Request.GetResponse
Using reader As StreamReader = New StreamReader(Response.GetResponseStream)
strWebResponse = reader.ReadToEnd
End Using
...
0
votes
1answer
309 views
Disposing MDI Child forms
According to the msdn
The two conditions when a form is not disposed on Close is when (1) it
is part of a multiple-document interface (MDI) application, and the
form is not visible; and (2) ...
2
votes
1answer
242 views
MonoTouch SIGSEGV during garbage collector initiated Dispose on ABPeoplePickerNavigationController
Building against MT 6.0.4.
Targeting iOS 4.
Testing on an iPhone 4S.
I'm stumped as to what I am doing wrong. I display the ABPeoplePickerNavigationController modally after subscribing to the ...
2
votes
2answers
177 views
Why calling GC.Collect is speeding things up
We have a C++ library (No MFC, No ATL) that provides some core functionality to our .NET application. The C++ DLL is used by SWIG to generate a C# assembly that can be used to access its ...
0
votes
1answer
151 views
How to check at runtime if an object is currently being used by the application, or has been garbage-collected?
The question pretty much says it all. Somewhere in my code i instantiated an object ObjectX with the new keyword. Now ObjectX is an expensive one in terms of memory and other resources. I need a means ...
1
vote
1answer
114 views
In VB/C# .NET, does a dialog always have to be disposed of manually?
I'm looking into disposing of resources and getting a little mixed up over the different ways to do it.
I've just found out that using Close() on a form shown with ShowDialog() only actually hides it ...
4
votes
7answers
502 views
Static disposable objects
How should I manage static classes with disposable items? Are there any rules of thumb?
Basically, should I refactor and make the following DisposableDataManager class non-
static or is it fine to ...
1
vote
3answers
136 views
Is a DbConnection closed and disposed when it goes out of scope? [duplicate]
Possible Duplicate:
Close and Dispose - which to call?
Many of the functions in my data layer are not protected by try-catch or using clauses.
My GUI layer has try-catch clauses. Will ...
0
votes
2answers
92 views
IDispose is neccessary, does Garbage collector work at end of loops etc
My doubt is about IDispose implementation. To my knowledge, when a code or section is complete, the variable or instance is disposed; please correct me if the statement is wrong. The follow is part ...
8
votes
8answers
1k views
.NET object events and dispose / GC
EDIT: After Joel Coehoorns excellent answer, I understand that I need to be more specific, so I modified my code to be closer to thing I'm trying to understand...
Events: As I understand, in the ...
1
vote
4answers
245 views
Memory release with IDisposable and without IDisposable
In my app I have a large object that created every few seconds I do with it some job and then I dont need it anymore.
I saw in the task manager that the ram size go up even if I dont have ant ...
0
votes
2answers
235 views
Proper way to remove unwanted subview and dispose it in Monotouch
I have a class derived from UIControl called MyObject and I also have a List that holds several objects on MyObject type.
All these objects are added as SubViews in ViewDidLoad overridden method of ...
0
votes
1answer
92 views
NotSupportedException on generic collection when garbage collector calls clear() (CF 3.5)
First thing: This is a compact framework 3.5 application.
I have a very weird problem. In a Dispose-Method the application disposes items in a collection and after that clears the list. So far ...
1
vote
1answer
239 views
Win32.DestroyIcon vs. Icon.Dispose
I have this line of code:
System.Drawing.Icon icon = System.Drawing.Icon.FromHandle(shinfo.hIcon);
A few lines later, after icon is used I have the line:
Win32.DestroyIcon(shinfo.hIcon);
However ...
4
votes
3answers
136 views
If an object has been disposed, does suppressing the gc finalizer save it some time?
Garbage Collection can become a time consuming process. In this regard, the GC tends to work only when it has to. If an object has been disposed, to help save time and aid the GC, should the GC's ...
7
votes
5answers
278 views
In what situation(s) would a reference point to an object that was queued for garbage collection?
I'm reading through a C# topic on Dispose() and ~finalize and when to use which. The author argues that you should not use references within your ~finalize because it's possible the object you're ...
2
votes
1answer
412 views
How to dispose objects correctly (ASP.NET MVC + Entity Framework)
I would like to know how to dispose objects correctly in the following situation. This is a ASP.NET MVC controller action. There is a repository which implements IDisposable. Attachment entity ...
0
votes
2answers
1k views
How to Force Disposal of Objects / GC
How do you force objects to dispose after use in order to free up memory? And, how do you force GC to collect?
Here's my Save Code. I've noticed that, every time I execute this function, my memory ...
2
votes
2answers
147 views
IDisposable + finalizer pattern
Looking at the IDisposable pattern + Finalizer pattern, there is something I don't understand:
public class ComplexCleanupBase : IDisposable
{
private bool disposed = false; // to detect ...
-4
votes
3answers
615 views
On what objects we should use dispose method ? C# 4.0
Ok here i am going to list objects of my software. Currently memory usage is increasing by the time passes, though it should not increase because i am not keeping any resources. Using only database.
...
5
votes
2answers
3k views
Java Disposable pattern
C# supports disposable pattern for deterministic garbage collection.
Is there such pattern for java?
Java 7 has autoclosable
...
1
vote
3answers
163 views
Do I have to use a “using” statement in a short method?
Do I have to use a using statement to dispose immediately even in a method? Or will the ending of the method cause an automatic Dispose of all local variables including graphics?
(I’m asking this ...
3
votes
3answers
345 views
How does reassigning a disposable object variable work?
In C# when reassigning a disposable object variable with a new object, how does it work in the memory? Will the memory space occupied by the old object simply be overwritten by the new object? Or do I ...
-1
votes
1answer
495 views
How does .Dispose() work in C#? [duplicate]
Possible Duplicate:
Proper use of the IDisposable interface
When is Dispose necessary?
If I write a class, which uses graphics, or threads for example, must I implement the IDisposable ...
2
votes
1answer
186 views
Should I trust LinqDataSource to clean up properly?
Taking my first stab as using the OnSelecting method of LinqDataSource so that I can specify a more complex query, I wrote this:
protected void CategoriesDataSource_OnSelecting(object sender, ...
0
votes
2answers
447 views
UnmanagedMemoryStream disposal and memory leaks
Considering the following code snippet and overlooking the lack of a using clause or an explicit disposal:
public static Image GetImage(string imageName)
{
Image image = null;
...
8
votes
8answers
4k views
Best way to dispose a list
I am having List object. How I can dispose the list ?
For example,
List<User> usersCollection =new List<User>();
User user1 = new User();
User user2 = new User()
...
5
votes
1answer
320 views
My controls are not being disposed correctly?
I have the following method:
public static void Disposer(Control.ControlCollection controls)
{
foreach (Control c in controls)
{
if (c.HasChildren)
...
2
votes
3answers
172 views
Cleaning up .NET data structures for GC
Does it make difference to clean up the data structures, when they are not needed anymore? I don't mean disposing the disposables - it's obviously required, but, for example, cleaning up dictionaries, ...
4
votes
8answers
2k views
Do we have Unmanaged resources in C#?
I had a discussion with my friend about managed and unmanaged resources in c#.
According to my friend:
1.a) Every object in C# is managed and there is nothing like unmanaged object or resource when ...
1
vote
3answers
403 views
How to call dispose on a custom trace listener in c#
I have written a custom trace listener extending TextWriterTraceListener.
Now, how do I call the Dispose() on the listener? I add it through the app.config of my project.
Tried adding the call ...
10
votes
3answers
2k views
When will an object declared in a static class get garbage collected?
public static class stClass
{
static Class1 obj = new Class1();
public static int returnSomething()
{
return 0;
}
}
When will the Class1 instance obj in stClass get garbage ...
0
votes
2answers
2k views
How to show form after it was closed?
I have a MDI application with couple of windows. Is there any way to disable disposing form after it was closed by the user. I want to be able to reopen that form just by calling form.Show() method.
...
6
votes
1answer
125 views
Can Java reuse non-disposed system GUI resources?
I'm trying to understand more about the dispose() function of AWT/Swing's Window class and what it does. Imagine the following series of events:
An instance A of a Window derivative X is ...
2
votes
3answers
195 views
Is there a delay after a full garbage collection before WeakReference.IsLive() becomes false?
I have written a unit test to comfirm the “Dispose” on my class does unhooks all events and disposes a timer that references the object.
However sometimes WeakReference.IsLive() returns true when ...
2
votes
4answers
150 views
How to perform an operation before object is disposed?
Working with C#. I have an abstract class that I use to read/write settings to an xml file. When the class is no longer needed I want to perform one last write operation to the xml file before the ...
1
vote
3answers
2k views
Garbage Collection dispose of Datatable array in c#
i'm new in GC,
if i want to release a datatable array, does calling dispose() on all its datatables is enough? do i need to set null to the databale array too ? or to every datatable?
is this ...
1
vote
3answers
2k views
C# Memory Leak questions
I've been reading a lot about this since I've been asked to fix a C# application that has memory leaking problems, but I haven't found an answer for these 2 issues:
Consider the following code:
...
3
votes
6answers
735 views
Finalizer and IDisposable
Based on the documentation (MSDN: link), it is clear that one should use the IDisposable pattern when implementing a finalizer.
But do you need to implement a finalizer if you implement IDisposable ...
5
votes
1answer
598 views
Dispose of AddIns created using MAF (System.AddIn)
Does anyone know how to dispose of AddIns created using System.AddIn. All the examples online seem to show how to easily load and use an addin, but none show how to dispose of them once they're alive. ...
4
votes
2answers
8k views
What is the difference between finalize and dispose in .net? [duplicate]
Possible Duplicate:
Finalize vs Dispose
Hi,
Recently I was quizzed in an interview about finalize and dispose. When is each one of them used and how is Garbage Collector related to them. ...



