C
Curious
Hi,
I have an ArrayList, mHistoryDataList, whose Count is 200. However, I
only want to loop through the last 10 items on mHistoryDataList.
That is, to loop mHistoryDataList, as if the first 190 items didn't
exist. How can I do this in a "foreach" statement?
foreach (Daily daily in hist.HistoryData)
{
// Start from 191th item
}
Thanks!
I have an ArrayList, mHistoryDataList, whose Count is 200. However, I
only want to loop through the last 10 items on mHistoryDataList.
That is, to loop mHistoryDataList, as if the first 190 items didn't
exist. How can I do this in a "foreach" statement?
foreach (Daily daily in hist.HistoryData)
{
// Start from 191th item
}
Thanks!