Tagged Questions

1
vote
4answers
1k views

VB.NET - Should a Finalize method be added when implementing IDisposable?

In Visual Studio, when I type the line "Implements IDisposable", the IDE automatically adds: a disposedValue member variable a Sub Dispose() Implements IDisposable.Dispose a Sub Dispose(ByVal …
0
votes
2answers
24 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 …
3
votes
6answers
82 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
42 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(), …
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 …
6
votes
9answers
1k views

When should I dispose my objects in .NET?

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?
5
votes
5answers
239 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
63 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
63 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) …
3
votes
4answers
1k views

Do I need to dispose a web service reference in ASP.NET?

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?
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
1answer
103 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 …
2
votes
1answer
38 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 …
1
vote
1answer
54 views

Why is NHibernate AdoTransaction’s finalizer called?

I'm profiling out unit & 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. I …
4
votes
6answers
534 views

Finalize vs Dispose

Why do some people use the Finalize method over the Dispose method? In what situations would you use the Finalize method over the Dispose method and vice versa?

1 2 3 4 5 9 next
15 30 50 per page