On MSDN I found:
In C#, every executed instruction is done so in the context of a method.
But I also read that an int A=5;
statement can be in the class body. It seems it's not in a method body, so why this is possible? It is probably just term confusion but I would like to know.