I\'ve my own .dll file that I used to use with Edge.js in nodejs, I\'m trying to use it now with dot net core app, but found no where/no how to get access to it, or define i
You can add a dll with the following code:
[DllImport("MyLbraryFile.dll", SetLastError = true, CharSet = CharSet.Auto)]
All you have to do is put the dll in the same directory.
https://msdn.microsoft.com/en-us/library/system.runtime.interopservices.dllimportattribute(v=vs.110).aspx