Write the sample code for threading in c# .net..
Answer Posted / sivakumar v
Static Void Run()
{
Console.WriteLine("Thread Is Running");
}
static void Main()
{
Thread TrdObj=new Thread(Run);//create the obj
TrdObj.start();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How can I develop an application that automatically updates itself from the web?
Explain the ways to deploy an assembly?
How are delegates chosen?
What is an inheritance ?Give an example in which inheritance is used?
What is call back method?
Where’s global assembly cache located on the system?
How long will it take to learn c#?
What is hash c#?
What is the extension of c# file?
Define multicast c# delegate?
What is difference between abstraction and encapsulation in c#?
Does the system.exception class have any cool features?
Can abstract class instantiated c#?
How many types of methods are there in c#?
Is c# good for web development?