I have a Array in c#.
public string[] alphabet = new string[] { "A","B","C",.......}
I want to return each and every elements which between two mentioned element.
Ex:
I want to return all elements in between "A" and "D". It should return {A,B,C,D} as result.
How can I do this? Is there any build in support or Are we suppose to write our own? Please help me.
Try
GetRange():