InterviewSolution
Saved Bookmarks
| 1. |
What Are Instance Fields In C#? |
|
Answer» Instance FIELDS are specific to an instance of a type. If you have a class T, with an instance FIELD F, you can CREATE TWO objects of type T, and modify the VALUE of F in each object without affecting the value in the other object. Instance fields are specific to an instance of a type. If you have a class T, with an instance field F, you can create two objects of type T, and modify the value of F in each object without affecting the value in the other object. |
|