InterviewSolution
Saved Bookmarks
| 1. |
Why do we use Singleton Class in C#? |
|
Answer» Singleton Class allow for single allocations and INSTANCES of data. It has a PRIVATE CONSTRUCTOR preventing class from being INSTANTIATED |
|