如何通过 COM Interop 公开一个用 Prism 编写的类?例如,给定以下接口:
TYPE
IFoo = public interface
property bar: string; read;
end;
FooImpl = class( IFoo )
private
function GetBar : string;
public
property bar: string; read GetBar;
end;
在此示例中,假设 IFoo 通过 TLBIMP 导入并链接到项目。