1
Reply

Explain Singleton design pattern in .net

Jennifer Sack

Jennifer Sack

Jun 05, 2012
2k
0

    Single ton design pattern is used when you want to create only one instance of a class in your process.To achieve this create private constructor and expose a static method in class which create instance of class.

    Nitin Goel
    January 09, 2014
    0