Als «static-constructor» getaggte Fragen

82
Wie funktioniert ein statischer Konstruktor?

namespace MyNameSpace { static class MyClass { static MyClass() { //Authentication process.. User needs to enter password } public static void MyMethod() { //Depends on successful completion of constructor } } class Program { static void Main(string[] args) { MyClass.MyMethod();...