October 2008
Beginner to intermediate
680 pages
16h 48m
English
Now that we've gone into more detail on some of the generic collection classes available in the FCL, let's talk a little more about fields. Previous chapters of this book discussed fields, which are values or objects responsible for storing the data specific to a given object. In the earlier chapters, we glossed over some of the finer points. Let's now take a little time to flesh out a couple of the finer points about fields.
We said back in Chapter 1 that trying to access local variables without explicitly initializing them will result in a compilation error. For example, this next bit of code
public class Example { static void Main() { // Declare several local variables within ...Read now
Unlock full access