3
votes
6answers
87 views
Avoid calling Invoke when the control is disposed
I have the following code in my worker thread (ImageListView below is derived from Control):
if (mImageListView != null &&
mImageListView.IsHandleCreated &&
…
0
votes
1answer
47 views
Understanding Streams and their lifetime (Flush, Dispose, Close)
Note: I've read the following two questions already:
Can you explain the concept of streams?
C# using streams
I'm coding in C#
In almost all code samples that use streams, .Dispose(), .Flush(), …
0
votes
2answers
27 views
detecting undisposed web service calls (ASP.NET)
I'm inheriting a legacy project, and there's a page that calls a method that makes a web service call. Load and performance testing has detected that this page sometimes takes a really long time to …
5
votes
5answers
265 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 += delegate
{
…
0
votes
5answers
70 views
Is SqlCommand.Dispose() required if associated SqlConnection will be disposed?
I usually use code like this:
using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString))
{
var command = connection.CreateCommand();
…
0
votes
1answer
65 views
C# AutoSave cleanup; best practice?
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) …
0
votes
1answer
106 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 must say this is my …
1
vote
2answers
60 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 = new Entities();
…
0
votes
5answers
207 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 2008 Team System, I …
2
votes
1answer
41 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.
Option Explicit
…
2
votes
4answers
107 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( ... );
... do stuff ...
…
0
votes
2answers
159 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 little test program, …
0
votes
2answers
65 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 dispose method:
…
-1
votes
2answers
92 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 search or Incremental …
13
votes
9answers
1k views
Should I Dispose() DataSet and DataTable?
DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.
However, from what I've read so far, DataSet and DataTable don't actually …
