What is the use of static members in C#.NET?

 Posted by Tripati_tutu on 12/22/2010 | Category: C# Interview questions | Views: 6274 | Points: 40
Answer:

The static members are the members which are not associated with a particular occurrence of any class. To implement this you have to use the keyword "static" before any member function. They can't access to non-static members as they are not associated with object instances.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response