C# learning notes- staticstatic General concept Associated with the class, NOT an instance. Static class A static class CANNOT be instantiated. Its members are accessed by the class name, instead of the instance name, like Math.PI. Access Static members Static to stati...Jan 27, 2022·1 min read