例 次の例では、 という名前 Example のクラスを、1 つの static (Shared Visual Basic では ) と 1 つのインスタンス プロパティで宣言します。 この例では、 メソッドを SetValue(Object, Object) 使用して元のプロパティ値を変更し、元の値と最終値を表示します。 using namespace System; using namespace System::Reflection; ref class Example { private: int static _sharedProperty = 41; int _instanceProperty; public: Example() { _instanceProperty = 42; }; static property int SharedProperty { int get(