0
Why do we create static class in c#?
When we can do all operations with normal classes why to create static one?
1 ответ
+ 1
Static class in fact more simple than normal class, if you do not need multiple instances of a class, use static class is more easier and faster.