Guest User

Untitled

a guest
Jan 12th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. var loadTasks = addresses.Select(address =>
  2.     {
  3.         Uri pathPicture = new Uri(address, UriKind.RelativeOrAbsolute);
  4.         return LoadBitmapImageAsync(pathPicture);
  5.     });
  6. var images = await Task.WhenAll(loadTasks);
  7. ListImages.AddRange(images);
Advertisement
Add Comment
Please, Sign In to add comment