2
votes
5answers
108 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 …
6
votes
3answers
107 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;
…
2
votes
5answers
77 views
Is Winforms accessible from unmanaged C++?
Some classic Windows/C++ applications can't easily be moved to managed C++.net, due to use of external libraries. Is it feasible to use newer GUI libraries like winforms (or even W …
0
votes
3answers
82 views
C# call to unmanaged C++ returning string of squares symbols
I have some C# code calling into an unmanaged C++ DLL. The method I am calling is intended to accept a string as a ref. To handle this I pass in a StringBuilder, otherwise there …
0
votes
3answers
90 views
How to use managed code from unmanaged code?
How do I call a .NET code from native C++ (unmanaged code)? I want to expose .NET code to my unmanaged (C++) application and then use them. More specifically, I want to call C# fro …
0
votes
1answer
161 views
How to advance the wallpaper slideshow on windows vista/7 programatically?
I readed on a forum that the "Next Desktop Background" command in Windows Aero Slideshow feature calls the stobject.dll file. So I runned the dumpbin to check wheter I could se an …
32
votes
36answers
6k views
Why was Google’s Chrome browser written almost entirely in C++ and not C# or Java?
Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?
0
votes
1answer
53 views
System Wide Shell Hook from .NET using Unmanaged DLL
Hello everyone,
I have used the code supplied in the following CodeProject article in the past with success, but it only seems to partially work on Vista/7 (I'm guessing because o …
3
votes
3answers
287 views
Stackoverflow calling ManagementScope.Connect();
Error im getting:
An unhandled exception of type
'System.StackOverflowException'
occurred in System.Management.dll
My callstack:
[Managed to Native Transition]
Syst …
1
vote
1answer
17 views
Need a good book(s) and information about working with unmanaged code and COM with .Net
I have been working with .Net since VS2002 and since then any time that I had to work with COM or unmanaged code has been a pain. I've succeeded doing what was expected but almost …
2
votes
4answers
159 views
how to run some code in memory?
I have a compiler which compiles assembly language to machine language (in memory).
My project is in c# .net.
Is there any way to run the memory on a thread?
How can DEP prevent it …
0
votes
1answer
76 views
Assembly Manifest loading error (.NET and C++ dlls)
My application (pure DotNET 2.0) is referencing another pure DotNET 2.0 dll which is PInvoking into an unmanaged (C++ 2005) dll. On some computers this works fine, on others there …
0
votes
2answers
43 views
Reading from an unmanaged stream - unsafe code, IntPtr
The following is exposed in the Firefox (Gecko) 3.5 code:
[Guid("fa9c7f6c-61b3-11d4-9877-00c04fa0cf4a"), ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface …
1
vote
1answer
41 views
Avoid loading .Net Dlls in a C++/CLI project?
I have a project written in C++/CLI. Some of the types there are in managed code, and some are in completely native code. Let's say I have the produced DLL on a machine that dosen' …
2
votes
1answer
92 views
How to prevent access violation on unmanaged dll call?
We have inherited a legacy system for reading to and from meter guns. This system was originally build on XP with .Net 1.1 (VS2003?). Having recompiled it on VS2008 with .net 3.5 w …
