Silverlight, dealing with Async calls
- by Billy
Hi there,
I have some code as below:
foreach (var position in mAllPositions)
{
DoAsyncCall(position);
}
//I want to execute code here after each Async call has finished
So how can I do the above?
I could do something like:
while (count < mAllPositions.Count)
{
//Run my…