2
votes
5answers
82 views
How should I inherit IDisposable?
Class names have been changed to protect the innocent.
If I have an interface named ISomeInterface. I also have classes that inherit the interface, FirstClass and SecondClass. FirstClass uses …
1
vote
6answers
92 views
Calling Dispose() vs when an object goes out scope/method finishes
Hi,
I have a method, which has a try/catch/finall block inside. Within the try block, I declare SqlDataReader as follows:
SqlDataReader aReader = null;
…
2
votes
4answers
78 views
Is it important to dispose SolidBrush and Pen?
I recently came across this VerticalLabel control on CodeProject.
I notice that the OnPaint method creates but doesn't dispose Pen and SolidBrush objects.
Does this matter, and if so how can I …
1
vote
4answers
86 views
Do you have to dispose of IDisposable objects before you repopulate them?
Assuming I have a method in my command architecture pattern that alters the contents of graphics path like so: (GraphicsPath is IDisposable)
(this is purely an untested, quick example)
public void …
5
votes
3answers
101 views
Why doesn’t Thread implement IDisposable?
I noticed that System.Threading.Thread implements a finalizer but not IDisposable. The recommended practice is to always implement IDisposable when a finalizer is implemented. Jeffrey Richter wrote …
0
votes
1answer
40 views
How to dispose <asp:ObjectDataSource>
Hello,
how can I dispose an <asp:ObjectDataSource>? I mean, there is no code behind and in aspx file there is this:
<asp:ObjectDataSource ID="CategoryDataSource" runat="server"
…
-1
votes
2answers
115 views
C#: Inheritance and IDisposable - strange issue
Hi there,
can anyone help, i have a small issue, i have an interface and also a base interface, when i try to do
.Dispose()
It doesn't find the method as its implemented on my sub class NOT …
0
votes
2answers
21 views
How can disposable class detect whether there is an exception in progress?
I have a class that implements IDisposable
public class Foo: IDisposable {
public void Dispose() {
// do the disposing
}
}
Then I have a method that uses the class in the following …
4
votes
2answers
48 views
When doing a Process.Start() do you need to wrap it in a using?
When you are starting a process and dont care about the result is this ok?
Process.Start(xxx);
Or should you do this
using (Process.Start(xxx)){}
3
votes
5answers
166 views
Why isn’t SqlConnection disposed/closed?
Given the method:
internal static DataSet SelectDataSet(String commandText, DataBaseEnum dataBase)
{
var dataset = new DataSet();
SqlConnection sqlc = dataBase == DataBaseEnum.ZipCodeDb
…
6
votes
4answers
148 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 = …
3
votes
1answer
53 views
c# interop marshalling and disposing
I have a DLL, which is designed in C++, included in a C# project and I have strange AccessViolationExceptions happening unrationally. I suspect that my garbage isn't collected correctly. I have an …
12
votes
9answers
974 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 …
0
votes
1answer
54 views
Storing MemoryStream in Cache
I've come across this code in one of my projects, which has a static function to return a MemoryStream from a file, which is then stored in Cache. Now the same class has a constructor which allows to …
5
votes
2answers
144 views
yield return statement inside a using() { } block Disposes before executing
I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern.
This is all based on the .NET 2.0 Framework (given constraints for the …
