Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
269 views

Need to implement a finalizer on a class that uses TcpClient?

I have a class (say MyClass) that uses (has as a private field) a TcpClient object. MyClass implements IDisposable calling TcpClient.Close in the Dispose method. My question is should MyClass also ...
4
votes
8answers
375 views

Do we have Unmanaged resources in C#?

I had a discussion with my friend about managed and unmanaged resources in c#. According to my friend: 1.a) Every object in C# is managed and there is nothing like unmanaged object or resource when ...
3
votes
6answers
54 views

Is there a guarantee on the order in which the Dispose() method is called when using multiple using statements for the same scope in C#?

using (Stuff1 stf1 = new Stuff1(...)) // Allocation of stf1 using (Stuff2 stf2 = new Stuff2(...)) // Allocation of stf2 { try { // ... do stuff with stf1 and stf2 here ... } ...
3
votes
3answers
378 views

unmanaged dll code

I am having a C# (.NET 3.5, VS2005 Professional) application that uses unmanaged 32bit library written in C/C++. API that I use is like this: void * Initialize(int x); voic GetData(void *); And ...
2
votes
3answers
305 views

How to dispose unmanaged resource manually?

I am using some unmanaged code like- [DllImport("wininet.dll")] private extern static bool InternetGetConnectedState(out int Description, int ReservedValue); //Creating a function that uses ...
1
vote
1answer
119 views

Using resource string table in unmanaged dll from managed code

I have an unmanaged MFC application. I have written a CLI wrapper for the application and converted into a DLL. The unamanged code has string table resources that is used to display messages here and ...
1
vote
4answers
747 views

Managed vs Unmanaged Resources in .NET. What's the difference?

I was reading Wrox's Professional C# 4 and .NET 4 chapter on "Memory Management and Pointers", specifically about how Garbage Collection works in .NET. It said the reason that "the garbage collector ...
1
vote
2answers
272 views

Should Marshal.FreeHGlobal be placed in a finally block to ensure resources are disposed?

I have the following block of code: IntPtr unmanagedPointer = Marshal.AllocHGlobal(buffer.Length); Marshal.Copy(buffer, 0, unmanagedPointer, buffer.Length); SomeCommandThatCanThrowAnException(); ...
1
vote
1answer
52 views

Are the database-related objects such as connection object, command object, datareader, dataadapter,… unmanaged resources?

Are the database-related objects such as connection object, command object, datareader, dataadapter,... unmanaged resources?
0
votes
1answer
31 views

Is there some standard way to explicitly close services and other resources?

For instance when using database connection, threading or IO streams (all what is required explicit closing/free up) is there some standard way of doing this? Perhaps by implementing some standard ...
0
votes
2answers
115 views

UnmanagedMemoryStream disposal and memory leaks

Considering the following code snippet and overlooking the lack of a using clause or an explicit disposal: public static Image GetImage(string imageName) { Image image = null; ...
0
votes
1answer
245 views

How to handle exception created by an unmanaged code block

In my code i am running an exe file through a process call. How to handle exception generated by the exe file. Can someone please help.
0
votes
2answers
272 views

How to release all resources for a process?

I am running a process, which is creating a file and using that file. After the end of that process, i am deleting that file. If some exception arises in between then how to know that the file is ...
0
votes
1answer
259 views

C++/CLI array of unmanaged type passed as pointer

My question carries forward the issue from cli/C++ how to define cli::array with unmanaged type element? I understand that to create a managed array with an unmanaged type, I need to supply its ...
0
votes
2answers
598 views

Unmanaged C code in C# Marshalling by ref string array!

I am having a really hard time getting this marshalling down. I have umanaged code that looks like this: WORD HLP_GetDeviceNames (LPSTR *DevNames, WORD Max_Len, WORD Max_Num) Just FYI I did not ...
0
votes
2answers
714 views

C# getting version of unmanaged dll

I'm calling an unmanaged dll from my managed c# code and wanted to check I'm calling the right version. The code I'm trying to load the assembly (to then get the resource file and then get the ...
0
votes
3answers
274 views

Calling a custom type from a DLL written in C++ from c#

I'm using a DLL written in c++ in my C# project. I have been able to call functions within the DLL using this code: [DllImport("hidfuncs", EntryPoint = "vm_hid_scan", ExactSpelling = true, CharSet = ...
0
votes
5answers
214 views

List of cases where USING statement should be employed

"File and Font are examples of managed types that access unmanaged resources (in this case file handles and device contexts). There are many other kinds of unmanaged resources and class library types ...