Getter only property in C++/CLI interface

Viewed 6606

What is the equivalent C++/CLI syntax to the following C# declaration (if such exists):

interface MyInterface
{
    int MyProperty {get;}
}
1 Answers
Related