May someone explain me the difference between these two classes?
I am always using the first one, but I the the second one often as well.
public static class Test
{
public static void Method()
{
}
}
public class Test
{
public static void Method()
{
}
}