I'm trying to understand the c# language and why you require the static keyword on all members within the static class. Yes, I understand a static class cannot be instantiated, but why aren't members by default static within a static class, as we know that a static class cannot have non-static members?
For Example: Why can't this
public static class StaticClass
{
public static int numberTest = 2;
}
be:
public static class StaticClass2
{
public int numberTest = 2;
}