0
votes
1answer
34 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=" …
5
votes
3answers
93 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 …
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 …
-1
votes
2answers
107 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 …
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
44 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 …
3
votes
5answers
149 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 == DataBas …
0
votes
1answer
46 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 …
6
votes
4answers
142 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 …
1
vote
2answers
36 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 …
1
vote
1answer
81 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
{
…
5
votes
2answers
137 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 co …
0
votes
1answer
31 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);
…
3
votes
9answers
130 views
Should IDisposable be applied cascadingly?
This is a rather basic question, however I'm still struggling with it a little.
IDisposable is implemented, when you want to enable the user of an object to free underlying resour …
12
votes
9answers
886 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 …
