我目前有一个 COM 组件的接口,如下所示:
[ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("aa950e58-7c6e-4818-8fc9-adecbc7a8f14")]
public interface MyIObjects
{
void set_price(float rx);
void set_size(long rx);
float get_price();
long get_size();
}
现在有一个简单的快捷方式可以将以下两行减少到一行
void set_price(float rx);
float get_price();
我知道在课堂上我可以做这样的事情
int Price { get; set; }
但这会在界面中起作用吗?