c# Programming Glossary: exports
Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible? http://stackoverflow.com/questions/1063151/create-a-c-sharp-dll-that-can-be-imported-in-a-delphi-app-using-stdcall-possib as somewhat ironic Delphi.Net actually supported unmanaged exports directly despite C# not doing so. I have no idea if this is..
Best way to check if a DLL file is a CLR assembly in C# http://stackoverflow.com/questions/1366503/best-way-to-check-if-a-dll-file-is-a-clr-assembly-in-c-sharp check if it is a COM DLL then you should look to see if it exports GetClassObject. Ref. UPDATE there is a more '.NET' way of accomplishing..
Why are Cdecl calls often mismatched in the “standard” P/Invoke Convention? http://stackoverflow.com/questions/15660722/why-are-cdecl-calls-often-mismatched-in-the-standard-p-invoke-convention You'd use the linker's .map file or the Dumpbin.exe exports utility to see the decorated names. The undname.exe SDK utility..
Block Control+Alt+Delete http://stackoverflow.com/questions/1660106/block-controlaltdelete for short. Here's an MSDN article about it . This DLL exports a set of functions that interact with the Winlogon process and..
MEF Constructor Injection http://stackoverflow.com/questions/2008133/mef-constructor-injection string Method Import Version string Version Then you need exports for Method and Version in your container. One way to do this.. reads the configuration and provides the values in it as exports to the container. An alternative way to handle this would be..
Reference a GNU C (POSIX) DLL built in GCC against Cygwin, from C#/NET http://stackoverflow.com/questions/2710465/reference-a-gnu-c-posix-dll-built-in-gcc-against-cygwin-from-c-net File Type DLL Section contains the following exports for helloworld.dll 00000000 characteristics 4BD5037F time date.. You can verify results with dumpbin.exe mydll.dll exports if you have Visual Studio installed. don't forget start command..
Set DllImport attribute dynamically http://stackoverflow.com/questions/2818011/set-dllimport-attribute-dynamically marshaller to help with name decoration. Use dumpbin.exe exports on the DLL if you are not sure what the export name looks like...
c# (WinForms-App) export DataSet to Excel http://stackoverflow.com/questions/373925/c-sharp-winforms-app-export-dataset-to-excel share improve this question I've created a class that exports a DataGridView or DataTable to an Excel file. You can probably..
Error 80040154 (Class not registered exception) when initializing VCProjectEngineObject (Microsoft.VisualStudio.VCProjectEngine.dll) http://stackoverflow.com/questions/4021796/error-80040154-class-not-registered-exception-when-initializing-vcprojectengin this would fail especially the regsvr32 step. Run dumpbin exports on that dll. If you don't see DllRegisterServer then you've..
Is is possible to export functions from a C# DLL like in VS C++? http://stackoverflow.com/questions/4818850/is-is-possible-to-export-functions-from-a-c-sharp-dll-like-in-vs-c to build a mixed mode DLL with both native and managed exports you should be using C CLI which is specially designed for this..
Using C++ Class DLL in C# Application http://stackoverflow.com/questions/569603/using-c-class-dll-in-c-sharp-application in C# Application I have an unmanaged C DLL which merely exports a single class not COM...it's just a simple C class as its interface...
“Unable to find an entry point named [function] in dll” (c++ to c# type conversion) http://stackoverflow.com/questions/653178/unable-to-find-an-entry-point-named-function-in-dll-c-to-c-sharp-type-con
How to protect dlls? http://stackoverflow.com/questions/805461/how-to-protect-dlls a .DEF file and an import library to have only anonymous exports known only by their export ids. Keep the DLL in a resource and..
ASP.NET web app calling Delphi DLL on IIS webserver, locks up when returning PChar string http://stackoverflow.com/questions/9322938/asp-net-web-app-calling-delphi-dll-on-iis-webserver-locks-up-when-returning-pch PChar export stdcall begin return PChar '' end exports SomeFunction c# delphi iis interop share improve this question..
|