Does this code shows the methods from a dll? from ctypes import * x = cdll.LoadLibrary(\"olari.dll\") dir(x)
I\'m stucked with a problem with Mono Interop in Linux. I have a native shared library (made in Lazarus) that I need to use in a C# assembly. The shared library is used by a Mono C# assemblie on Windo
I have some code in VB6 which imports a function from a dll, it uses the byVal and byRef keywords, I want to convert that code into C# 3.5.
I created a VB.NET DLL file which I am using in an unmanaged C++ project. When I try to create an object of the class, I am getting an error:
In my project I got a device which comes with C++ Sample codes. The codes are ok and the device is working as expected.
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 have been using this particular function for months now, however today it stopped working. I can\'t imagine why, and I\'m ruling nothing out, so if you have any ideas please do tell!
I have a C# project consisting of stored procedures that reference a win32 dll from another project in the solution.Currently, dllimport is using absolute paths to reference it.If I use a relative pat
I\'m writing a little C# app that calls a few functions in a C++ API. I have the C++ code building into a DLL, and the C# code calls the API using DllImport. (I am using a .DEF file for the C++ DLL so
I have a MFC extension DLL which I want to use in a C# application. The functions I\'m exposing are C functions, i.e. I\'m exporting them like this