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 windows application in c#?
What kind of the information stored inside the assembly?
What is the main method?
What is razor view in c#?
3. Use layered architecture for coding. s.no name description 1 abc xxxxxxxxx 2 abc xxxxxxxxx 3 4 5 6 7 8 Select all Clear all Add Delete Name Description Save close
Why singleton pattern is used in c#?
What does void mean in c#?
Name the method of servicebase class?
What is concatenation and when should it be used?
Can we make a class private in c#?
What is a dll in c#?
What is session c#?
What is a dynamic assembly?
What is the difference between “finalize” and “finally” methods in c#?
What is the difference between CreateObject() and GetObject()?