example to illustrate :
public class Something
{
private static int number;
static Something()
{
int number = 10;
// Syntax to distingish between local variable and static variable ?
}
}
Inside the static constructor, is there a syntax that can be used to distinguish between the local variable called "number", and the static variable of the same name ?