Chapter 8. Understanding Values and References

After completing this chapter, you will be able to:

  • Explain the differences between a value type and a reference type.

  • Modify the way in which arguments are passed as method parameters, by using the ref and out keywords.

  • Box a value by initializing or assigning a variable of type object.

  • Unbox a value by casting the object reference that refers to the boxed value.

In Chapter 7, you learned how to declare your own classes and create objects by using the new keyword. You also saw how to build an object by using a constructor. In this chapter, you will learn about the very different characteristics of the primitive types (such as int) and class types (such as Circle).

Copying int Variables and Classes

All primitive ...

Get Microsoft® Visual C#® 2005 Step by Step now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.