How to: Use Properties in C++/CLI
// mcppv2_property_4.cpp // compile with: /clr using namespace System; interface struct IEFace { public: property int VirtualProperty1; property int VirtualProperty2 { int get(); void set(int i); } }; // implement virtual events ref class PropImpl : publi...