C# learning notes- static
Jan 27, 2022 · 1 min read · static 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...
IDave commented