C ++ / CLI界面中仅限Getter的属性

时间:2011-07-05 14:24:16

标签: interface properties c++-cli

以下C#声明的等效C ++ / CLI语法是什么(如果存在):

interface MyInterface
{
    int MyProperty {get;}
}

1 个答案:

答案 0 :(得分:22)

interface class MyInterface
{
    property int MyProperty 
    {
       int get();
    }
};

参见示例here