How to read from a list and print the elements using C#? -


i have list consists of different bitmap images elements. question how can see content of list?

you can check count property iterate on images in list this:

if(list1.count > 0) {     foreach(var img in list1)     {         picturebox3.image = img;         await task.delay(10); // wait 10 millisecond asynchronously     } } 

note: in order use await, need make method async.see documentation.


Comments

Popular posts from this blog

user interface - How to replace the Python logo in a Tkinter-based Python GUI app? -

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -