I have a C dll that I\'m wrapping so that I can call it from C#. One function uses events to notify you when a state has changed, and figuring out to deal with it took some digging. It seems to be wor
In C# PInvoke, how do I pass a string buffer so that the C DLL fills it and returns? What will be the PInvoke declaration?
I am calling a DLL using PInvoke. The DLL\'s function returns a C string in codepage 437. Is there a way to have the .Net marshaling convert the string to unicode, or could someone suggest which para
I am using WatiN to script action开发者_高级运维s in Internet Explorer that run in the background of the user\'s machine.(I know...hacky).I am able through WatiN to make the Internet Explorer window n
How would I P/Invoke a C function which returns a union\'ed struct?开发者_如何学JAVAYou would need to use a StructLayout of explicit and the FieldOffset attribute.
I have a dll which accepts a struct that contains a pointer to a function to do a callback. How can I get an IntPtr to a function of my application to build the 开发者_如何学Cstruct?
Running a c# console app I wrote on 64 bit Vista. Here\'s the code: class Class1 { static void Main(string[] args)
Yet another one of my idiotic P/Invoke questions... Sometimes I think this stuff is going to be a piece of cake, but it blows up in my face.
Is there a site or repository of information about Cross Platform development in mono?Obviously I know about Moma, and the Cross Platform Guidlines and I am using the Visual Studio Tools to run and de
I\'m looking for a way to perform pointer operations in C# or .NET in particular. I want to do something very simple