Tagged Questions

0
votes
2answers
18 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 …
2
votes
6answers
56 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
31 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
5answers
55 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
59 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) …
1
vote
2answers
59 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(); …
5
votes
5answers
193 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
1answer
101 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
1answer
35 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 …
0
votes
5answers
187 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
4answers
106 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
140 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
62 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
89 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 …
0
votes
2answers
58 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 own variable will …

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