In singleton pattern, a class can only have one instance and provides access point to it globally.
Eg:{
private static readonly singleton _instance=new singleton();
}