C# allows you to have static classes and all members inside the class must be static.
C++ allows you to declare static members inside a class.
After instantiating the class many times, all the static fields are going to have the same value in all instances.