Select from following answers:- private constructors
- public constructors
- instance constructors
- static constructors

- All Above
static constructors are used to initialize the static data that will be performed once.
These are also called as 'type initializers' which can be called automatically after creating the first instance.
Limitations of static constructors are that, they can slow down the process as we cannot guarantee the execution time... and they are very hard to reset.
Show Correct Answer
Asked In: Spotted While Learning |
Alert Moderator