static Context()
 {
     // We need to call gpgme_check_version at least once!
     try
     {
         Gpgme.CheckVersion();
     }
     catch { };
 }
Exemple #2
0
 static Context()
 {
     // We need to call gpgme_check_version at least once!
     try {
         Gpgme.CheckVersion();
     } catch (Exception exception) {
         // Do not throw in type constructor!
         Debug.Print(exception.Message);
     }
 }