What is multiThreading in .NET?
Answer / Vishal Bhatnagar
Multi-threading in .NET refers to the ability of a single application to perform multiple tasks concurrently by running multiple threads. Threads can be created using the System.Threading namespace, which provides classes such as System.Threading.Thread for creating and managing threads.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain me what is the .net framework and how does it work?
What is an exe and a dll?
DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12
1.What is the major advantage of polymorphism? Please don't simply say binding. Specify any other reason.
How com+ related to the dna architecture?
asp mean
what are design patterns in .net....?
What does the "EnableViewState" property do?
What is the Difference between imperative and interrogative code?
How to find methods of a assembly file (not using ILDASM) Reflection
What is alias ? Is it used in .Net ?
i have 2 functions, int add(int a,int b); double add(int a,int b); does this code implement overloading? if not what will be the error?