1
vote
4answers
78 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 exa …
0
votes
1answer
39 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=" …
0
votes
2answers
17 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 cla …
5
votes
3answers
96 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. Jeff …
-1
votes
2answers
110 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 m …
1
vote
3answers
285 views
Dispose on user controls, really meant to edit the .designer.cs file?
For a user control with internal data structures that must be disposed, is the correct place to add that code to the Dispose method in the .designer.cs file, or is there an event o …
4
votes
2answers
47 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)){}
1
vote
2answers
62 views
Can I dispose of these unmanged resources without requiring a reference to each?
I have a class bMainframe that manages the connections to 4 different mainframes. It allows for the same underlying unmanaged library to be opened in specific ways and more than on …
1
vote
3answers
178 views
How to handle exception thrown from Dispose?
Recently, I was researching some tricky bugs about object not disposed.
I found some pattern in code. It is reported that some m_foo is not disposed, while it seems all instances …
12
votes
9answers
907 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 DataT …
3
votes
1answer
48 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 corr …
1
vote
2answers
37 views
Testing Finalizers and IDisposable
Hi,
The question is how can I test the fact that object disposes resources when finalise is called.
The code for the class:
public class TestClass : IDisposable {
public boo …
0
votes
1answer
50 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 construc …
0
votes
1answer
32 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);
…
1
vote
1answer
85 views
Why doesn’t the debugger hit this breakpoint consistently? Am I neglecting a file handle?
Consider the following code:
static void Main(string[] args)
{
using (MemoryStream memoryStream = new MemoryStream(Resources.SampleXMLFile)) // Breakpoint set here
{
…
