Пример #1
0
 public AdminVerification(string name, string email, int gender, string password, int age, Register register)
 {
     InitializeComponent();
     this.name      = name;
     this.email     = email;
     this.gender    = gender;
     this.password  = password;
     this.age       = age;
     this.register  = register;
     adminVerifyDel = VerifyAdmin;
 }
Пример #2
0
 public static bool AdminVerification(SteamID user, AdminVerifyDelegate AdminVerify)
 {
     return AdminVerify(user);
 }