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
What is dll in vb.net?
Explain the serialization in .net
What is the use of partial methods?
Is boxing an implicit conversion?
What is .cshtml file?
What is a hash table in c#?
Why data types are important?
What is msil in c#?
Are c# objects passed by reference?
In a memory when you Box and Unbox a value-type what happens?
What is iqueryable in linq?
What is the ouput of the following program?
What is polymorphism in c sharp?
What is data adapter in c#?
What is winforms c#?