#include "stdafx.h"
using namespace System;
class MembreStatic
{
private:
const static Int32 x = 42;
public:
static Int32 get_x()
{
return x*10;
}
};
Int32 main()
{
Console::WriteLine ( MembreStatic::get_x() );
Console::ReadLine();
return 0;
}