hi
I was just working with List<T>.GetRange on your online c# compiler and it seems to be inconsistent when I input "list.GetRange(0,list.Count)" I receive the whole list as I should. But when I input " list.GetRange(1,list.Count)" I receive an out of bounds exception which I managed to solve by writing " list.GetRange(1,list.Count-2)" in order to get the range that I want.
Is this an intentional feature or a bug?
thanks for your time