1- If Dll is controlled, that is, writing using a .net structure than calling a method from a dll, it looks like you are calling a method from your own class.
just add the link to the DLL in your project and include the namespace link using the "Use" keyword.
2- If it is not, you need to dynamically import your dll, you can use [DllImport]
source
share