Answered Questions

  • Threading

    Write a very simple multi threaded program in C#. 1. The program should create two threads that each add data to the same list at the same time. Then after they are both done, print out the entire list. 2. So each thread should loop through 100 times adding the name of the thread doing the work to the list. For example, the first thread should add the string "thread1" to the shared list and the second...

    yogihanu

    • Mar 15th, 2008

    Copy and past the below mentioned code to get the answer:++++++++++//Start copy from hereusing System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Threading...