How can you index from mid point of an array to the end point without specify the exact end point. So for example I have an array of {1,2,3,4,5,6} how can I index (find values of) [3] -> [5] (4-6). Its very clear in languages like python but I can't seem to find the answer for C# if there is a short and simple way please let me know thanks!
ill give you some more context, I have an array of items and want to get the items from the 2nd value too the end, however the end changes for all the lists, but it always starts from 2nd value.