I have a hashtable with n number of records. I need to copy out the records between x and y and iterate through them.
How would I do this?
Example:
HT1.Count = 500;
HT2 = HT1[0] - HT1[100];
--edit--
Just so you are aware, the reasoning for this is I am generating PDF's from .MSG files. The problem arises for the end user that when they get a 12GB PDF it causes issues :P
I need to break the PDF's into messages of 250, and then start a new PDF. So order does not really matter, neither does returning the same records each time, as it will only be done once.