DLL IN C#
-
Wie funktioniert jemand eine DLL-Funktionalität und Name-Space in einer GUI app in C #?
Wie funktioniert jemand eine DLL geladen und die damit verbundenen API-Funktionen und (I guess) Name-Space in einer GUI app in C #?How does someone include a DLL functionality and name space in a GUI app in C#?
How does someone load a DLL and its associated API functions and (I guess) name space in a GUI app in C#?
-
1. write your code with namespaces an so on and let this build to a Type Library, then you will get a dll file from
2. In the solution you add the dll files as "references"
after including you can use it like you want