Chapter 6. Arrays and Tuples

WHAT'S IN THIS CHAPTER?

  • Simple arrays

  • Multidimensional arrays

  • Jagged arrays

  • The Array class

  • Arrays as parameters

  • Enumerations

  • Tuples

  • Structural comparison

If you need to work with multiple objects of the same type, you can use collections (see Chapter 10) and arrays. C# has a special notation to declare, initialize, and use arrays. Behind the scenes, the Array class comes into play, which offers several methods to sort and filter the elements inside the array. Using an enumerator, you can iterate through all the elements of the array.

Also, .NET 4 introduces a new type Tuple that can be used to combine multiple objects of different types. See the "Tuples" section later in this chapter.

SIMPLE ARRAYS

If you need to use multiple objects of the same type, you can use an array. An array is a data structure that contains a number of elements of the same type.

Array Declaration

An array is declared by defining the type of elements inside the array followed by empty brackets and a variable name. For example, an array containing integer elements is declared as this:

int[] myArray;

Array Initialization

After declaring an array, memory must be allocated to hold all the elements of the array. An array is a reference type, so memory on the heap must be allocated. You do this by initializing the variable of the array using the new operator with the type and the number of elements inside the array. Here you specify the size of the array:

myArray = new int[4];

Note

Value and reference ...

Get Professional C# 4 and .NET 4 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.