Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an Array<string>. I have to take all elements from i to j. How can I make this using an extension method?

share|improve this question
1  
What do you mean "take"? What kind of return value would you be expecting? IEnumerable<String> perhaps? – Joseph Jun 17 '09 at 16:01

3 Answers

up vote 9 down vote accepted

Try the following.

public static IEnumerable<T> GetRange<T>(this IEnumerable<T> enumerable, int start, int end) {
  return enumerable.Skip(start).Take(end-start); 
}

Then you can do

Array<string> arr = GetSomeArray();
var res = arr.GetRange(i,j);
share|improve this answer

You could just use ArraySegment<T>.

If you need this returned as an IEnumerable<T>, the options using Skip/Take already listed will work very well.

share|improve this answer
var result = myStringArray.Skip(i).Take(j-i);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.