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 the purpose of the integer parse method the decimal parse method?
Explain About stateless and state full web service
What is response redirect in c#?
What is public or shared assemblies ?
Does c# do array bounds checking?
What is the difference between mobile application and desktop application?
What are the types of assembly available
What are namespaces, and how they are used?
Explain the process of polymorphism with an example?
What is sqladapter c#?
Why do we use static methods in c#?
What is difference between C# and VB.NET?
How do I format in c#?
Is equal in c#?
Is void a class?