标签: interface properties c++-cli
以下C#声明的等效C ++ / CLI语法是什么(如果存在):
interface MyInterface { int MyProperty {get;} }
答案 0 :(得分:22)
interface class MyInterface { property int MyProperty { int get(); } };
参见示例here