I have a list and currently we are passing on a single item at a time to another method
foreach (var contact in tracker.Parse())
basically we are selecting contacts from Azure Blob Storage and importing them into Dynamics CRM. tracker.Parse()
returns is a list of contacts.
I want to select every 1000 and then wait until they are completed in the other method before I pass in the next 1000.
Need guidance on how to do this.
Appreciate the assistance!