#include "stdafx.h"#using using namespace System;class MyClass {private: int x;public: int y;};int main(void) { MyClass inst; inst.x = 10;}