if I have a foreach loop that takes a whole bunch of addresses and loops through them, is there a way I could skip the first 500 entries,
something like:
foreach(var row in addresses)
{
  string strAddr = row.ADDRESS + "," + row.CITY + "," + row.ST;
  System.Threading.Thread.Skip(500)
}
I know skip doesn't exist but is there anything I can use that would do the same thing?
 
     
     
     
    