C# language refference_4
Values of the string type can be written as string literals (§2.5.3.5). The string keyword is simply an alias for the predefined System.String class. Writing the keyword string is exactly the same as writing System.String, and vice versa. 4.2.4 Interface types 4.2.5 Array types An array is a data structure that contains a number of variables which are accessed through computed indices. The variables contained in an array, also called the elements of the array, are all of the same type, and this type is called the element type of the array. Array types are described in §12. 4.2.6 Delegate...