How do you create threading in .NET? What is the namespace
for that?
Answers were Sorted based on User's Feedback
Answer / sabu
using System;
using System.Threading;
namespace ConsoleApplication1
{
class Class1
{
static void PrintHelloFromThreadName()
{
Console.WriteLine("Hello, from thread {0}",
Thread.CurrentThread.Name); // {0}
}
public void ThreadStart()
{
PrintHelloFromThreadName();
}
static void Main(string[] args)
{
Thread.CurrentThread.Name = "Main thread";
Class1 obj = new Class1();
Thread thread = new Thread(
new ThreadStart(obj.ThreadStart));
thread.Name = "Forked thread";
thread.Start();
PrintHelloFromThreadName();
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / kinjal
for threading namespace in .NET is
using System.Treading
static void Main(string[] args)
{
Thread.currenttread.name="k";
Console.WriteLine("name is {0}" , Thread.currentthread.name)
}
| Is This Answer Correct ? | 1 Yes | 1 No |
What are multicast delegates?
What are virtual destructures?
How do you define the lease of the object?
Please explain what is a delegate?
Explain different types of cookies in .NET?
Which among the following two is best and why? Abstract Class and Interface. What is the major difference in between those two except the discrete methods and methods with function definition.
Explain different types of html, web and server controls.
you have a requirement from client, he has an XML file and you need to insert the data into 5-6 tables in database. explain me the procedure.
What is the concept of inheritance and how it works in .net?
Using activex control in .net?
Can you write a class without specifying namespace?
Explain when should you use .net web forms over asp.net mvc?