Why everything started?UpdatedJanuary 27, 2022•1 min read•View as MarkdownVVivienZ Being a dev is a life long learning journey... Why I started writing blogs? Keep track of the fun journey. Deepen understanding of each content posted. Receive precious advises from the community. Inspire others who share the same journey. #webdev
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