0
votes
2answers
33 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
48 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 ...
7
votes
3answers
116 views

Need to delete objects: implement Dispose or create objects in a function?

I have some objects that read a file, save the data in arrays and make some operations. The sequence is Create object A, operate with object A. Create object B, operate with object B... The data read ...
1
vote
2answers
77 views

Force GC to use another thread-context

I'm working with OpenGL and there are unmanaged objects I need to dispose of manually. (Specifially textures and vertex-buffers). The problem is, that the function that frees a vertexbuffer ...
1
vote
3answers
222 views

How to dispose Entity Framework record objects after insertion?

I insert a lot of records into an Entity Framework database and don't need them any more after I run .SaveChanges();. Moreover, I actually would like the memory to be released as soon as possible (for ...
2
votes
5answers
77 views

In a managed environment why do we need IDisposable

One of the major advantages of managed code is built-in memory management. You don't need to track pointers, buffer sizes, release memory you finish with, etc, the managed aspect does that for you. ...
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 ...
1
vote
3answers
120 views

Class Derived from a Disposable Class having Disposable Member

I have some questions regarding the disposable classes. Suppose I have an IDisposable implementing class having some disposable members. I have implemented the Dispose() method, i.e.: class ...
0
votes
2answers
86 views

Trying to understand IDisposable

I read some articles and blogs on Implementation if IDisposable and GC working set. However, I could not understand the core areas of differentiation like: Following is code of my test class: Imports ...
0
votes
2answers
130 views

dispose a list of IDisposables in the finalizer

I have a couple of unmanaged memory structures used to communicate with c++ dlls. Each such structure has to be freed manually, so I wrap it in a MyUnmanagedStructure which implements IDisposable. I ...
11
votes
4answers
888 views

How do I force release memory occupied by MemoryStream?

I have the following code: const int bufferSize = 1024 * 1024; var buffer = new byte[bufferSize]; for (int i = 0; i < 10; i++) { const int writesCount = 400; using (var stream = new ...
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 ...
0
votes
0answers
42 views

IDisposable Field [duplicate]

Possible Duplicate: General Rule for When to Implement IDisposable I'm looking for the right approach of releasing a disposable object. In this case obj1 has the method Close() above and ...
1
vote
4answers
242 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 ...
53
votes
13answers
2k views

Should “Dispose” only be used for types containing unmanaged resources?

I was having a discussion with a colleague recently about the value of Dispose and types that implement IDisposable. I think there is value in implementing IDisposable for types that should clean up ...
2
votes
3answers
142 views

Unmanaged Resources, IDisposable and Custom Types

yet another topic on the subject as I got tired of reading countless topics to find an answer to my questions :) Lets say we have the following class: public class MyClass { private const string ...
2
votes
3answers
225 views

Disposing of custom objects

Is it necessary to dispose of custom objects, even if they only contain managed objects? For example, I have a custom class that contains some List objects, as well as some string and xmldocument ...
1
vote
2answers
2k views

Why is there need for an explicit Dispose() method in asp.net MVC Controllers? Can anyone explain its intricacies? (asp.net specific)

I know C# can manage resource pretty well with its garbage collector. But since it has that, what exactly is this for and why is it needed? Can anyone explain why .Dispose() is needed in asp.net ...
0
votes
2answers
639 views

Deconstructor, Dispose don't know what to use

I have run into a small issue in my program. I have a class with a Socket in it and some declared variables. Now when i leave the page where the class was defined, Class someclass = new class; I ...
0
votes
3answers
343 views

Calling Dispose method will clear and compact the memory in .Net?

I have idea about Dispose and Finalize method in .Net as following. Please correct me if I am wrong. Dispose : Implement IDisposable inferface and remove unused/unmanaged code in Dispose method. ...
3
votes
1answer
771 views

How and when to dispose/garbage collect a singleton instance

I am using a Singleton instance created out of a nested class. This instance holds some static collections which are cleared when the Singleton is disposed, but the problem is I get a reference to ...
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 ...
0
votes
2answers
45 views

IDisposable pattern: shall I annulate vars when GC.SupressFinalizer

Whenever I call GC.SupressFinalizer() in the Dispose method, should I assign null to all instance members to have them cleaned up, or they would be removed in any case ? For example: class test : ...
0
votes
6answers
464 views

Cleaning up Resources (Garbage Collection, Using, IDisposable, etc)

I am trying to figure out how to control when my custom objects are collected by the Garbage Collector - I have found a lot of references to using IDisposable/Destructors to do this but every example ...
0
votes
4answers
221 views

IDisposable - the right way implementation (c#)

I'm confuse about when and how to implement IDisposable. I saw that its needed to implement IDIsposable only for class that holds unmanaged resources so if i have class "A" that holds unmanged and ...
3
votes
5answers
1k views

Must I implement IDisposable on all classes, or is a base class sufficient?

I am told I need to dispose of instances of my Entity Framework repository classes and I created a base class to enforce this implementation. I need to check with the experts: is it acceptable to ...
0
votes
2answers
363 views

IDisposable and managed resources [duplicate]

Possible Duplicate: Proper use of the IDisposable interface I have a class that has both managed and unmanaged resources. I am using IDisposable to release un-managed resources. Should I ...
0
votes
1answer
588 views

Proper Object Disposal In C++/CLI

Consider the following class: public ref class Workspace { protected: Form^ WorkspaceUI; SplitContainer^ WorkspaceSplitter; AvalonEditTextEditor^ TextEditor; ...
-4
votes
3answers
606 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. ...
3
votes
1answer
396 views

MonoTouch and IDisposable Pattern

Reading MT documentation, I've seen that it is possible to release memory also implementing the IDisposable .NET pattern. For example, in a custom class that extends UIViewController ...
3
votes
3answers
336 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 ...
0
votes
4answers
252 views

Custom initialization functions with IDisposable

In .NET (C#) I follow some custom conventions and patterns that require Constructors, Initialization functions and IDisposable implementations. A typical class is illustrated below. No initialization ...
2
votes
3answers
271 views

Nulling Out Managed Resources on Dispose [duplicate]

Possible Duplicate: Any sense to set obj = null(Nothing) in Dispose()? I understand if this question is closed as a duplicate, but I'm having some trouble reconciling some posts on this ...
3
votes
2answers
163 views

How does the CLR find the classes which implement IDisposable?

I need some clarification on… … how the CLR — more specifically, the garbage collector — finds the classes which implement the IDisposable interface; and … how it ...
1
vote
2answers
2k views

IDisposable Example

I am looking for an example in which shows dispose pattern of .net with managed and un-managed resourced are allocated. In every text book only code snippets are shown.
4
votes
7answers
609 views

Why is it always necessary to implement IDisposable on an object that has an IDisposable member?

From what I can tell, it is an accepted rule that if you have a class A that has a member m that is IDisposable, A should implement IDisposable and it should call m.Dispose() inside of it. I can't ...
1
vote
6answers
517 views

C# disposable question

Would the garbage collector automatically free the unmanaged resources (whatever, actually) associated with some IDisposable instance if, for example, I forgot to write using statement? Obviously, I ...
11
votes
4answers
564 views

Keeping references to `IDisposable` when using the Reactive Extensions for .NET: always, never, or sometimes?

Up until now I have zealously kept every reference to the IDisposable returned from any .Subscribe(...), .Connect(...), etc, method within Rx. I've done this because of my fear that a garbage ...
2
votes
2answers
270 views

Should I implement GC.SupressFinalize on IDisposable AND Finalize?

The code review checklist in my new client place has the following - Class implementing Dispose and Finalize should have a call to GC.SupressFinalize in Dispose implementation Why? Should it ...
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
730 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 ...
4
votes
2answers
391 views

When should I be using IDisposable, is it ever wrong to use it? What about Dispose Chaining?

I'm really looking for some best practice wisdom. So here are the questions, I'll add more if people leave comments. Feel free to answer some or all of these questions. When SHOULD I use ...
0
votes
5answers
971 views

How to use IDisposable to dispose an object

I want to use IDisposable interface to clean any resource from the memory, that is not being used. public class dispose:IDisposable { public void Dispose() { throw new ...
5
votes
5answers
272 views

Disposing of Resources in .NET

i have a stupid question, but i want to hear the community here. So here is my code: using (FtpWebResponse response = (FtpWebResponse)request.GetResponse()) { return true; } My question, ...
6
votes
6answers
2k views

What's the purpose of GC.SuppressFinalize(this) in Dispose() method?

I have code that looks like this: /// <summary> /// Dispose of the instance /// </summary> public void Dispose() { if (_instance != null) { _instance = null; // ...
4
votes
4answers
659 views

Using using to dispose of nested objects

If I have code with nested objects like this do I need to use the nested using statements to make sure that both the SQLCommand and the SQLConnection objects are disposed of properly like shown below ...
7
votes
5answers
343 views

How to handle disposable objects we don't have a reference to?

If you have a brush and pen as in: Brush b = new SolidBrush(color); Pen p = new Pen(b); and dispose them like so: b.Dispose(); p.Dispose(); How would you dispose it if it was: Pen p = ...
2
votes
1answer
1k views

CUDA global memory deallocation issues in .NET

I have a class (see example bellow) which acts as a .NET wrapper for a CUDA memory structure, allocated using cudaMalloc() and referenced using a member field of type IntPtr. (The class uses DllImport ...
2
votes
5answers
2k views

When would dispose method not get called?

I was reading this article the other day and was wondering why there was a Finalizer along with the Dispose method. I read here on SO as to why you might want to add Dispose to the Finalizer. My ...
27
votes
2answers
3k views

ASP MVC: When is IController Dispose() called?

I'm going through a big refactoring / speed tweaking of one of my larger MVC apps. It has been deployed to production for a few months now, and I was starting to get timeouts waiting for connections ...

1 2