Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Private Constructors and Singleton Classes in C#
A private constructor is used in classes containing only static member as shown below −
class Demo {
// private constructor
private Demo() { }
public static a = 10;
}
A singleton class has normal methods and you can call it using an instance.
To prevent multiple instances of the class, the private constructor is used.
Let us see an example −
Example
public class Singleton {
static Singleton a = null;
private Singleton() {
}
} Advertisements
