Previous Page
Next Page

Chapter 9
Creating Value Types with Enumerations and Structs
After completing this chapter, you will be able to:

In Chapter 8, “Understanding Values and References,” you learned about the two fundamental kinds of types that exist in Microsoft Visual C#: value types and reference types. A value type variable holds its value directly on the stack, whereas a reference type variable holds a reference to an object on the heap. In Chapter 7, “Creating and Managing Classes and Objects,” you learned how to write your own classes, thus creating your own reference types. In this chapter, you'll learn how to write your own value types.

C# supports two kinds of value types: enumerations and structures.


Previous Page
Next Page