Should I throw my own ArgumentOutOfRangeException or let one bubble up from below?
- by Neil N
I have a class that wraps List<
I have GetValue by index method:
public RenderedImageInfo GetValue(int index)
{
list[index].LastRetrieved = DateTime.Now;
return list[index];
}
If the user requests an index that is out of range, this will throw an ArgumentOutOfRangeException .
Should I just let this happen or…