Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



Peter Agyekum What is singleton? 1) A singleton is a class that only allows one instance of itself to be created - and gives simple, easy access to such instance. Unlike static classes, Singleton classes can be inherited, can have base class, can be serialized, and can implement interfaces. You can implement the Dispose method in your Singleton class. ... 1b) Interface is nothing but a collection of method and property declarations and has a signature, not the implementation.
Related Topics