3
我正在使用一些Interop代碼,並需要實例化一個接口。Interop DLL的實例化接口
C#中的等價物是:
Interop.SomeInterface theInterface;
theInterface = new Interop.SomeInterface();
theInterface.SomeEvent += new SomeEventHandler(...);
我怎樣才能做到在實例F#這個界面?我是否需要將這個interop dll重新包裝成F#可以理解的東西?
這是現貨。謝謝! – Dave