I\'m new to C++/CLI but have been coding managed code for many years... apparently too many years. :)
Apparently there\'s a list of blittable types and so far I don\'t see Enums specifically on it. Are they blittable in general? Or does it depend on whether they are declared with a blittable base type
im using the following pattern for translating win32 exceptions into .NET exceptions. var result = A_KERNEL32_PINVOKE_CALL();
I have these declarations (DLL) and tried to convert it in C# so i can call the functions from the DLL.
I need to convert: wchar_t arr[20][32] To char arr[20][32] The conversion is done in the DLL (written in C++) and I want the values of arr to be displayed to the user in Windows Forms (written
if I declare a value Struct in C++ CLI in this way: [StructLayout(LayoutKind::Sequential, CharSet = CharSet::Ansi, Pack = 2)]
Does someone know what might go wrong, when you attempt to compare two System.Drawing.Image entities?
I\'m running into an issue when trying to read c++ structures from memofields in a number of DBase IV files into C# (.Net 4) and then insert them into MSSQL 2008.The data is being extracted ok from th
I import a C++ dll into a C# project and, on a x64 machine, on debug mode, PInvoke complains that m开发者_运维问答anaged signature does not match the unmanaged target signature.
I\'m looking for a code sample which illustrates making cross-threaded COM calls in an ATL COM Server DLL.Know one?