What is the equivalent C++/CLI syntax to the following C# declaration (if such exists):
interface MyInterface
{
int MyProperty {get;}
}
interface class MyInterface
{
property int MyProperty
{
int get();
}
};
See example here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With