0
votes
0answers
14 views
C# — Create Managed Array from Pointer
Dear Sirs,
I'm trying to create a Managed Array of doubles from an array of bytes. I have the problem working currently, but I wanted to optimize. Here's some code that I would like to work:
…
1
vote
3answers
151 views
Is there performance penalty on managed code when reading/writing high data volume on TCP/UDP socket compare to unmanaged code?
Do you think C# TCP/UDP socket use in the managed application can handle (roughly) same amount of data as native C++ version? If not, what is data amount we shall consider native or c# is better to …
0
votes
4answers
65 views
fread speeds managed unmanaged
Ok, so I'm reading a binary file into a char array I've allocated with malloc.
(btw the code here isn't the actual code, I just wrote it on the spot to demonstrate, so any mistakes here are probably …
1
vote
1answer
37 views
Best method of calling managed code(c#) from unmanaged C++
Hello,
We have developed a s/w architecture consisting of set of objects developed in C#. They make extensive use of events to notify the client of changes in status, etc.
The intention …
4
votes
4answers
111 views
C++ internal code reuse: compile everything or share the library / dynamic library?
General question:
For unmanaged C++, what's better for internal code sharing?
Reuse code by sharing the actual source code? OR
Reuse code by sharing the library / dynamic library (+ all the header …
4
votes
6answers
75 views
Uniformly handling error codes in an unmanaged API
I'm writing a wrapper around a fairly large unmanaged API. Almost every imported method returns a common error code when it fails. For now, I'm doing this:
ErrorCode result = Api.Method();
if (result …
0
votes
1answer
141 views
What is the future of unmanaged code? [closed]
I'm now intensively digging into WPF, C#..and so on in the MS .NET world.
Please, give your thoughts about the perspectives of using unmanaged code in near future application development. Is the …
1
vote
3answers
34 views
Marshal.AllocHGlobal VS Marshal.AllocCoTaskMem, Marshal.SizeOf VS sizeof()
Hi.
I have the following struct:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
public struct WAVEHDR
{
internal IntPtr lpData; // pointer to locked data buffer
internal …
0
votes
2answers
326 views
Unmanaged C++ Unit testing in Visual Studio 2008
I want to create a managed C++ unit test project to test an unmanaged MFC project. I have read msujaws's procedural and followed it. I implemented a test method to test the return string of a function …
0
votes
2answers
149 views
GetPhysicalMonitorsFromHMONITOR returned handle is always null.
Hi,
On the Media Foundation SDK there is the GetPhysicalMonitorsFromHMONITOR function
that I am trying to implement using C# but with no luck ...
In the returned PHYSICAL_MONITOR[], the function …
0
votes
4answers
41 views
howto parse struct to C++ dll from C#
I am trying to call a function in a unmanaged C++ dll.
It has this prototype:
[DllImport("C:\\Program Files\\MySDK\\VSeries.dll", EntryPoint = "BII_Send_Index_Template_MT" )]
internal unsafe …
0
votes
4answers
120 views
How do I get \0 off my string from C++ when read in C#
I'm kind of stuck here. I'm developing a custom Pipleline component for Commerce Server 2009, but that has little to do with my problem.
In the setup of the pipe, I give the user a windows form to …
5
votes
4answers
74 views
Pinning an updateble struct before passing to unmanaged code?
Hi
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 …
0
votes
2answers
260 views
Problem only in Vista (.net): call unmanaged dll(Shell32.dll, function: SHEmptyRecycleBin) from thread
***Platform: in Vista(ultimate or home/premium) it does not work, other OS(xp, windows7) it works******
I'm emptying recycle bin using c++.net(or c#.net) inside a thread. When i do this straight …
2
votes
3answers
128 views
Managed C++ to form a bridge between c# and C++
I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's been a while.
Anyway, I'm doing the reverse of what most people do. Calling C# code …
