1
vote
2answers
55 views
How-to do the clean up ?
I have this code.
A base class that create a new instance of the context.
public class Base
{
private Entities context;
public Base()
{
context = n …
5
votes
5answers
98 views
C#: Do I need to dispose a BackgroundWorker created at runtime?
I typically have code like this on a form:
private void PerformLongRunningOperation()
{
BackgroundWorker worker = new BackgroundWorker();
worker.DoWork += …
0
votes
2answers
75 views
GarbageCollector, Dispose or static Methods?
Hi guys,
I developed a few classes last month. They grow big (round 30-40 Methods each class).
I never take a thought of Memory Leaks, GarbageColletor or something like this (I m …
1
vote
1answer
28 views
When do I need to dispose objects in VBA
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.
O …
0
votes
5answers
135 views
C# abstract Dispose method
I have an abstract class that implements IDisposable, like so:
public abstract class ConnectionAccessor : IDisposable
{
public abstract void Dispose();
}
In Visual Studio 20 …
2
votes
4answers
99 views
C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation?
Many years ago, I was admonished to, whenever possible, release resources in reverse order to how they were allocated. That is:
block1 = malloc( ... );
block2 = malloc( ... );
.. …
0
votes
2answers
116 views
Does garbage collector call Dispose()?
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.
However, from my …
0
votes
2answers
59 views
.NET WinForms application not releasing components?
Hello:
I'm working with a .NET 2.0 WinForms application in C#.
I noticed something that I thought to be strange during the tear down of my application. In the designer generated …
-1
votes
2answers
73 views
C# Why Accesing ListBox.SelectedItem.ToString(), the form tries to dispose?
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 se …
2
votes
3answers
121 views
Purpose of Dispose calling Dispose(IsDisposing) pattern in C#?
Here is code from MSDN. 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 e …
0
votes
2answers
53 views
Javascript: know when an object will be garbaged
Hi all, is there a way to know when an object will be disposed by GC?
My object (call it A) write some variables in a global array-object, so when the object will be garbaged its …
1
vote
5answers
69 views
Do I need to call Graphics.Dispose()?
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.
All th …
1
vote
3answers
134 views
Proper cleanup of WPF user controls
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 …
0
votes
1answer
31 views
Am I responsible for Disposing a BackgroundImage?
Hi, I have a windows form where I set the BackgroundImage property to a custom bitmap image.
private Image MakeCustomBackground()
{
Bitmap result = new Bitmap(100, 100);
…
0
votes
6answers
52 views
Strange GDI+ behaviour.
I have made a method to CompressImageSize according to Image quality. The code for it is
public static Image CompressImage(string imagePath, long quality)
{
Image srcImg = Loa …
