is it possible to block set a list with a value after a particular index, fast?
How is the below logic can be written in C#?. I could use a different collection if I can do the same.
List<int> mylist = new List<int>(10);
int index = 3;
int value = 11;
mylist.SetValuesafterIndex(index, value);
EDIT:
Clarification: I mean, I want indices 3 to 9 inclusive to be set to value 11