Is there any sample c# code for simple threading?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

Difference between Value type & reference types ? and give the example in .Net?

0 Answers  


Define multicast delegate? How it be used?

0 Answers   Siebel,


Why should you override the tostring() method?

0 Answers  


What are the types of threading models ?

4 Answers   Digital GlobalSoft,


From which base class do all Web Forms inherit from?

0 Answers   Siebel,


Name some properties of array.

0 Answers  


What is console programming language?

0 Answers  


What is an iqueryable in c#?

0 Answers  


Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?

0 Answers  


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

1 Answers   iGate,


Give an example of a directcast.

0 Answers  


Why delegates are safe in c#?

0 Answers  


Categories