C代碼如下: #include "stdio.h" public delegate int MyDeg(int num); class Program { static void Main(string[] args) { try { MyDeg myd = new MyDeg(FF); Console.WriteLine(Call(myd, "helloworld")); } catch (Exception ex) { Console.WriteLine(ex.Message); } } static int FF(int num) { Console.WriteLine(num); return num + 1; } [DllImport("my.dll", EntryPoint = "Call")] public extern static int Call(MyDeg mm ,string str); }
|
|