MT5ManagerAPI.dll is native c++ dll. Better, you will add to reference ManagerAPI.NET.dll - c# wrapper and use it.
using System;
using Manager; // from ManagerAPI.NET.dll
class Program
{
static void Main(string[] args)
{
CManagerApi manager = ManagerFactory.Create();
}
}