I have this code :
stringCutted = myString.Split("/"). // ???
and I’d like to store in stringCutted the last element of the string[] after the split, directly, quickly, without storing the splitted array in a variable and access to that element with array[array.length].
Is this possible in C#?
If you’re using .NET 3.5 or higher, it’s easy using LINQ to Objects:
Note that
Last()(without a predicate) is optimized for the case where the source implementsIList<T>(as a single-dimensional array does) so this won’t iterate over the whole array to find the last element. On the other hand, that optimization is undocumented…