4
votes
2answers
46 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
37 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
33 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
37 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 …
3
votes
5answers
131 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
27 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);
…
7
votes
4answers
137 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
1answer
76 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
113 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 …
3
votes
9answers
122 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 …
1
vote
1answer
63 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 clas …
2
votes
1answer
140 views
CUDA global memory deallocation issues in .NET
I have a class (see example bellow) which acts as a .NET wrapper for a CUDA memory structure,
allocated using cudaMalloc() and referenced using a member field of type IntPtr.
(The …
12
votes
9answers
797 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 …
0
votes
1answer
102 views
Unity to dispose of object
Is there a way to make Unit dispose property-injected objects as part of the Teardown?
The background is that I am working on an application that uses ASP.NET MVC 2, Unity and WCF …
8
votes
10answers
560 views
How do I convince my colleagues not to implement IDisposable on everything?
I work on a project where there is a huge number of objects being instanced by a few classes that stay in memory for the lifetime of the application. There are a lot of memory leak …
