What is use of singleton class in c#?


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

Post New Answer

More C Sharp Interview Questions

What does protected internal access modifier mean?

0 Answers  


In .NET which is the smallest unit of execution?

0 Answers   Siebel,


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,


What is a hash table c#?

0 Answers  


How do I make a dll in c#?

0 Answers  






Is static thread safe?

0 Answers  


What are namespaces, and how they are used?

0 Answers  


what is generics? can u explain 5 to 6 examples on generics that covers class,method,structure,list,delegates?

0 Answers   CTS,


What is delegates in c#?

0 Answers  


What is a destructor in c#?

0 Answers  


What are the types of serialization?

0 Answers  


What is the difference between User controls and Custom Controls?

0 Answers   Accenture,


Categories