C# learning notes- static
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...
vivienz.hashnode.dev1 min read
Dave Murray
.NET developer with a passion for mobile and DevOps.
Here are a couple more for you...