Static vs Singleton in C# (Difference between Singleton and Static)
- by Jalpesh P. Vadgama
Recently I have came across a question what is the difference between Static and Singleton classes. So I thought it will be a good idea to share blog post about it.Difference between Static and Singleton classes:A singleton classes allowed to create a only single instance or particular class. That instance can be treated as normal object. You can…