1
vote
4answers
81 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 …
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"
…
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 class in the following …
5
votes
3answers
98 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 …
-1
votes
2answers
111 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 …
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)){}
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 correctly. I have an …
1
vote
2answers
38 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 bool HasBeenDisposed …
0
votes
1answer
51 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 …
0
votes
1answer
33 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);
using(Graphics …
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
{
using (XmlTextReader …
3
votes
5answers
156 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
143 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 = …
5
votes
2answers
142 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 …
1
vote
1answer
75 views
Is mutex correctly implemented and how do I dispose it?
I am reviewing some code and one of the code analysis (fxCop) warnings has gotten me very confused. The code implements a few mutex's by creating variables at the start of the class, similar to this:
…
