0
What is static?
I know static is a type not an instance, but what's the difference between those two. Also what exactly is the use of the keyword static.
2 Answers
+ 1
Tristan
check this article :
https://www.geeksforgeeks.org/static-keyword-in-c-sharp/
0
Oh ok, so if something is static you can access it without having to create an object to access it, then why not use static for everything.