How do you retrieve the last element of an array in C#?
|
|
The array has a
When declaring an array in C#, the number you give is the length of the array:
|
|||||
|
|
LINQ provides Last():
This is handy when you don't want to make a variable unnecessarily.
|
|||
|
|
|
To compute the index of the last item:
Will get you -1 if the array is empty - you should treat it as a special case. To access the last index:
or
will cause an exception if the array is actually empty (Length is 0). |
||||
|
|
|
Use Array.GetUpperBound(0). Array.Length contains the number of items in the array, so reading Length -1 only works on the assumption that the array is zero based. |
|||||
|
|
The following is torretant of empty arrays and will return NULL if the array is empty, else the last element.
|
|||||
|