Tagged Questions
The unmanaged tag has no wiki summary.
97
votes
35answers
27k views
Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? [closed]
Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?
20
votes
4answers
14k views
Embedding unmanaged dll into a managed C# dll
I have a managed C# dll that uses an unmanaged C++ dll using DLLImport. All is working great.
However, I want to embed that unmanaged DLL inside my managed DLL as explain by Microsoft there:
...
16
votes
7answers
10k views
Possible to call C++ code from C#?
is it possible to call C++ code, possibly compiled as a code library file (.dll), from within a .NET language such as C#?
Specifically, C++ code such as the RakNet networking library
Would really ...
14
votes
7answers
6k views
Unmanaged DLLs fail to load on ASP.NET server
This question relates to an ASP.NET website, originally developed in VS 2005 and now in VS 2008.
This website uses two unmanaged external DLLs which are not .NET and I do not have the source code to ...
14
votes
7answers
11k views
What is managed/unmanaged code in C#?
I am using Assembly.GetEntryAssembly()... in my C# code to get the version of the application. It runs fine but when I try it in NUnit it returns NULL. In the MSDN it states that it can return NULL ...
12
votes
2answers
284 views
Is there a tool that generates P/Invoke signatures for arbitrary unmanaged DLL?
I stumbled upon a tool that generates P/Invoke signatures for Microsoft's own unmanaged DLLs: PInvoke Interop Assistant
Is there a similar tool that will generate P/Invoke signatures for third-party ...
11
votes
9answers
807 views
What advantages are there to developing a Win32 app in C++ over a .NET app in C#?
I learned windows programming using Visual C++, and the Win32 API. Nowadays, it seems most apps are being developed in .NET using C#. I understand that most of the time there isn't much performance ...
10
votes
3answers
539 views
What are the implications of using unsafe code
Aside from the fact that the code itself can access memory directly. What are the other implications of using the "/unsafe" compiler flag and the "fixed" keyword? Are there any knock on effects ...
8
votes
2answers
155 views
Handling different unmanaged integer sizes
I have a C library. It has many function calls like the following:
void init_foo( unsigned long x, unsigned long y );
The library itself is dynamically loaded at runtime (rather like a plugin). The ...
8
votes
6answers
9k views
Using C++ Class DLL in C# Application
I have an unmanaged C++ DLL which merely exports a single class (not COM...it's just a simple C++ class) as its interface. I want to use this class in C# but am told that it cannot merely be imported ...
7
votes
5answers
118 views
In managed code, what should I look after to keep good performance?
I am originally a native C++ programmer, in C++ every process in your program is bound to your code, i.e, nothing happens unless you want it to happen. And every bit of memory is allocated (and ...
7
votes
3answers
1k views
what is the difference between “managed” vs “unmanaged”?
I hear/read about it sometimes when talking about .NET, for example "managed code" and "unmanaged code" but I have no idea what they are and what are their differences. What are their difference, by ...
7
votes
4answers
380 views
Marshalling what is it and why do we need it?
What is marshalling and why do we need it.
I find it hard to believe that i cannot send an int over the wire from c# to c and have to marshall it. Why cant c# just send the 32bits over with a ...
7
votes
3answers
449 views
What is the difference between a delegate instance and a method pointer?
I thought that a delegate instance was interchangeable with a function instance.
Take the following code:
delegate int AddDelegate(int a, int b);
AddDelegate DelegateInstance;
public void ...
7
votes
6answers
7k views
Merge several native DLLs into one DLL
I've got a lot of small DLLs which I would like to make into one big(er) DLL (as suggested here). I can do so by merging my projects but I would like a less intrusive way.
Can several DLLs be merged ...
6
votes
2answers
223 views
Allocation and deallocation of memory in unmanaged code using platform Invoke (C#)
I want to allocate and deallocate memory in unmanaged code (C++) and we call them functions from managed code (C#).
Iam not sure whether the following code is fine without memory leaks or not?
C# ...
6
votes
2answers
100 views
Managed to unmanaged overhead
In .NET there are several places when you must leave managed code and enter the realm of unmanaged a.k.a. native code. To name a few:
extern dll functions
COM invocation
There are always comments ...
6
votes
3answers
237 views
fixed statement in C# and managed pointer in IL code
In unsafe code in C# I assigned pointer to the managed variable of array type:
int[] array = new int[3];
...
fixed (int* ptr = array)
{
//some code
}
Then I looked at corresponding part of the ...
6
votes
3answers
288 views
Correct usage of DllImport
Suppose there is a c++ method int NativeMethod(double, double *) in a Native.dll. My first attempt at calling this method from managed code was (assuming I don't need to specify the entry point)
...
6
votes
4answers
6k views
A call to PInvoke function '[…]' has unbalanced the stack
Hey
I'm getting this weird error on some stuff I've been using for quite a while. It may be a new thing in Visual Studio 2010 but I'm not sure.
I'm trying to call a unamanged function written in C++ ...
6
votes
2answers
509 views
How can I declare constant strings for use in both an unmanaged C++ dll and in a C# application?
Curently I'm passing my const string values up from my C++ into my C# at startup via a callback, but I'm wondering if there's a way of defining them in a C++ header file that I can then also refer to ...
6
votes
6answers
1k views
C# deallocate memory referenced by IntPtr
I am using some unmanaged code that is returning pointers (IntPtr) to large image objects. I use the references but after I am finished with the images, I need to free that memory referenced by the ...
6
votes
6answers
415 views
How to wrap a C library so that it can be called from a web service
We have a library with very complex logic implemented in C. It has a command line interface with not too complex string-based arguments. In order to access this, we would like to wrap the library so ...
6
votes
2answers
555 views
Marshal.PtrToStringUni() vs new String()?
Suppose i have a pointer of type char* to unicode string, and i know the length:
char* _unmanagedStr;
int _unmanagedStrLength;
and i have 2 ways to convert it to .NET string:
...
6
votes
6answers
780 views
How do I find out if a .NET assembly contains unmanaged code?
.NET assemblies that contain a mixture of managed and unmanaged code cannot be ILMerged with other assemblies.
How can I verify if a given .NET assembly contains purely managed code, or a mix of ...
6
votes
3answers
289 views
My application is unmanaged. Where do I start introducing managed code?
My whole application (which is rather big, with a 20MB executable) is written in unmanaged C++.
Because I can clearly see the advantages in using managed code, I want to start introducing managed code ...
6
votes
4answers
1k views
Pinning an updateble struct before passing to unmanaged code?
I using some old API and need to pass the a pointer of a struct to unmanaged code that runs asynchronous.
In other words, after i passing the struct pointer to the unmanaged code, the unmanaged code ...
6
votes
3answers
268 views
Which managed classes in .NET Framework allocate (or use) unmanaged memory?
Is there a known (documented) set of .NET types that allocate memory in the unmanaged portion of the process' memory?
For example, Microsoft documents that the WPF infrastructure allocated unmanaged ...
6
votes
6answers
1k views
Database Access Libraries for C++
Background:
I have an application written in native C++ which uses the wxWidgets toolkit's wxODBC database access library which is being removed from all future versions of wxWidgets . I need to ...
6
votes
8answers
3k views
Mixing C# Code and umanaged C++ code on Windows with Visual Studio
I would like to call my unmanaged C++ libraries from my C# code. What are the potential pitfalls and precautions that need to be taken? Thank you for your time.
5
votes
2answers
92 views
Multiple function calls from C# to C++ unmanaged code causes AccessViolationException
I have declared a DLL import in my C# program that looks like this:
[DllImport("C:\\c_keycode.dll", EntryPoint = "generateKeyCode",
CallingConvention = CallingConvention.Cdecl)]
static ...
5
votes
1answer
153 views
Minimum C# code to extract from .CAB archives or InfoPath XSN files, in memory
Lately I've been trying to implement some functionality which extracts files from an InfoPath XSN file (a .CAB archive). After extensive searching around the internet, it seems that there is no native ...
5
votes
2answers
124 views
Unmanaged callback causing stack to overflow
I am working with an unmanaged resource with C#. The resource exposes a callback that can be setup for certain events that could happen within the hardware. To gain access to the unmanaged functions I ...
5
votes
2answers
91 views
How does Marshal.ReadInt32 etc. differ from unsafe context and pointers?
Particularly: Is Marshal safer? Are pointers faster?
int pixel = Marshal.ReadInt32(bitmapData.Scan0, x * 4 + y * bitmapData.Stride);
int pixel = ((int*)bitmapData.Scan0)[x + y * bitmapData.Stride / ...
5
votes
2answers
108 views
How do i determine if a ConstructorInfo object has an unmanaged parameter?
My app uses reflection to analyze c++/cli code in runtime.
I need to determine if a type has a constructor without unmanaged parameters (pointers and such), because i want later on to use:
...
5
votes
2answers
209 views
Is this DLL managed or unmanaged?
I hold before you a DLL. Using only the Win32 SDK, can you tell me if this DLL is a .NET assembly?
Why? Our application loads plugins in the form of DLLs. We are trying to extend the definition of ...
5
votes
1answer
256 views
Free unmanaged c-code memory in managed C#
I have a large c-code library that used to write its results to file. I converted it to return it's data via a float* array to a C++ program like such (to avoid constant file I/O):
float* mgrib(...)
...
5
votes
2answers
519 views
How can I embed an unmanaged C++ form into a .NET application?
I have been able to successfully wrap my unmanaged Borland C++ dll, and launch it's forms from a C# .NET 4.0 application. Is it possible to embed a form from the dll directly into a .NET application?
...
5
votes
3answers
233 views
What is the best way to support multiple architectures in a mixed managed/unmanaged environment?
Background
We have a .NET library that is referencing one of our unmanaged dlls, lets say:
DotNet.dll
Unmanaged.dll
Thus far, Unmanaged.dll is only 32-bit, so the DotNet.dll is marked with 32-bit ...
5
votes
2answers
117 views
.NET - Copy from Unmanaged Array to Unmanaged Array
I've been looking through the Marshal class, but I can't seem to find a method that allows me to copy from an unmanaged array (IntPtr) to another unmanaged array (IntPtr).
Is this possible using ...
5
votes
6answers
213 views
using C function in C#
i have a dll, built with mingw
one of the header files contains this:
extern "C" {
int get_mac_address(char * mac); //the function returns a mac address in the char * mac
}
I use this dll in ...
5
votes
5answers
3k views
Creating a managed wrapper for 32bit and 64bit unmanaged DLL
We are creating a C# wrapper around a unmanaged DLL. The unmanaged DLL comes in both a 32 and 64bit versions. We keep the managed wrapper in its own project so that we can build it as a separate ...
5
votes
1answer
383 views
How to get Visual Studios build system to understand unmanaged dependencies of managed dlls?
When building managed code Visual Studio correctly (and recursively) copies dlls of referenced managed projects to the output folder of the project being build.
However, if one the of those ...
5
votes
3answers
2k views
Marshal.AllocHGlobal VS Marshal.AllocCoTaskMem, Marshal.SizeOf VS sizeof()
I have the following struct:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
public struct WAVEHDR
{
internal IntPtr lpData; // pointer to locked data buffer
internal uint ...
5
votes
5answers
1k views
Calling unmanaged function from C#: should I pass StringBuilder or use unsafe code?
I've got a C# program that needs to pass a char buffer to an unmanaged function. I've found two ways that seem to work reliably, but I'm not sure which I should choose.
Here's the unmanaged ...
5
votes
1answer
1k views
Using C# extension methods from managed C++/CLI
Forgive me if my terminology is a little off. My knowledge of managed C++/CLI is very limited.
I have an MFC application that uses a dll with the /clr option enabled. This dll uses a couple of C# ...
5
votes
5answers
2k views
Ways to speed up build time? (C#/Unmanaged C++)
A legacy app I am working on currenty takes ~2hours to build. The project has about 170 projects with 150 or so being unmanaged C++ and the other 30 C#.Net 2.0.
What are some suggestions on ways to ...
5
votes
2answers
466 views
What is the best unit testing tool for a mix of managed and unmanaged C++?
I am going to start implementing some unit tests for a codebase that is a mix of managed and unmanaged C++. Can NUnit hack it with unmanaged code? Is there a better alternative?
5
votes
4answers
2k views
Unmanaged DLLs in C++
I've been reading many a tutorial/article on unmanaged DLLs in C++. For the life of me, however, I cannot seem to grasp the concept. I'm easily confused by the seeming disagreement about whether it ...
5
votes
6answers
626 views
Using DLR from Unmanaged Code
Is it possible to call managed code, specifically IronRuby or IronPython from unamanaged code such as C++ or Delphi?
For example, we have an application written in Delphi that is being moved to ...