A concise description of the C# static modifier for former VB developers
Posted by: EggHeadCafe.com New Articles,
on 29 Apr 2011 |
View original | Bookmarked: 0 time(s)
Fields declared with the static keyword are referred to as static fields or static data., while the other fields like FirstName are called instance fields. So an instance field belongs to an object, and a static field belongs to the class as a whole. This article explains the static keyword and how it is used. read more
By Peter Bromberg