Is there a built in method in C# to get the max index in a List ?
|
No, there isn't a built-in method. You can always use
For a List, you are guaranteed that the elements will be in the range 0..Count-1, so you can create an extension method:
Off course, these lines will return -1 when the list has 0 elements, which might be a problem. |
|||||||
|
|
The maximum valid index is always the size - 1, so:
If you want to get the value at the last index in a very readable way, you could use LINQ:
Note that this won't be quite as efficient as using |
|||||||||||
|
|
If you mean the index of the max value then no, there isn't. You could probably write an extension method: These are for min and max.
Note that these methods will consider |
|||
|
|