class Test { public static int Hello = 5; }
int j = Test.Hello;
Test test = new Test(); int j = test.Hello;