Hi,
ich bräuchte ne C++ DLL oder besser das Projekt mit folgendem Code:
Und den Aufruf in die Main...
Ich würds ja selber machen aber ich hab sowas von keine Ahnung von C, dass ich es mittlerweile 2 Stunden versucht hab ohne Erfolg -.-Code:#include "MSCorEE.h" void StartTheDotNetRuntime() { // Bind to the CLR runtime.. ICLRRuntimeHost *pClrHost = NULL; HRESULT hr = CorBindToRuntimeEx( NULL, L"wks", 0, CLSID_CLRRuntimeHost, IID_ICLRRuntimeHost, (PVOID*)&pClrHost); // Push the big START button shown above hr = pClrHost->Start(); // Okay, the CLR is up and running in this (previously native) process. // Now call a method on our managed C# class library. DWORD dwRet = 0; hr = pClrHost->ExecuteInDefaultAppDomain( L"c:\\PathToYourManagedAssembly\\MyManagedAssembly.dll", L"MyNamespace.MyClass", L"MyMethod", L"MyParameter", &dwRet); // Optionally stop the CLR runtime (we could also leave it running) hr = pClrHost->Stop(); // Don't forget to clean up. pClrHost->Release(); }
Wäre nett wenn das jemand eben fertig macht![]()

Zitieren
