I just did a little experiment:
public abstract class MyClass { private static int myInt = 0; public static int Foo() { return myInt; } publi
If it's a static variable, that means it exists exactly one place in memory for the duration of the program.