What is difference between instance class and static class in c#?

What is Difference between class variable and instance variable with example?

  • Answer:

    Well, at the basic level, class fields, or static fields, as they are called sometimes, belong to the class and not to any particular instance of the class. Class fields can be assigned without instantiation of instance objects of a class. For example: public class ExampleClass { public static String classField = ""; public String instanceField = ""; } I can assign a value to classField just like that: ExampleClass.classField = "new value"; Instance fields, on the other hand, belong to a particular instance of the class. Thus, to assign an instance field a value, you have to first instantiate an object of the class just like that: ExampleClass obj1 = new ExampleClass(); obj1.instanceField = "new value";

wiki.answers.com Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.