InterviewSolution
| 1. |
Can You Prevent A Class From Being Instantiated? |
|
Answer» Yes, a class can be prevented from being instantiated by using a private constructor as SHOWN in the example below. using SYSTEM; Yes, a class can be prevented from being instantiated by using a private constructor as shown in the example below. using System; |
|