Class static variables

A static variable shares the value of it among all instances of the class.

static Local Variables in C#

Nope, you can't have a static local variable in a method in C#, get over it.  Declare them in the class.

The reason – C# is an Object Oriented programing language, C (which allows static) is a procedural programing language. In C it is logical to have a static variable in a function block. In C# a class is a basic block, so it's logical to only have static member in a class.  Don't liek that explanation, tough its just the way it is!  

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *