.netCore v1.1 has ClassLibrary Project and it will compile to a DLL
Is this DLL is unmanaged? and can i call it from C++ or Delphi?
.netCore v1.1 has ClassLibrary Project and it will compile to a DLL
Is this DLL is unmanaged? and can i call it from C++ or Delphi?
You may need to host .NET environment inside your code.
In Delphi you may use TJclClrHost
class from JclDotNet.pas
unit (Jedi Code Library).
PS The classes in your DLL may be not ComVisible
so you may need to use reflection to make the call. See "using reflection" sample from Hosting CLR in Delphi with/without JCL - example