Beispiel #1
0
 public static StoreName GetStoreName()
 {
     CertificateStoreLocation form = new CertificateStoreLocation();
     form.ShowDialog();
     try
     {
     return (StoreName) Enum.Parse(typeof(StoreName), (string) form.comboBox1.SelectedItem);
     }
     catch (Exception)
     {
     return StoreName.My;
     }
 }
Beispiel #2
0
 public static StoreName GetStoreName()
 {
     CertificateStoreLocation form = new CertificateStoreLocation();
     form.ShowDialog();
     try
     {
         return (StoreName) Enum.Parse(typeof(StoreName), (string) form.comboBox1.SelectedItem);
     }
     catch (Exception)
     {
         return StoreName.My;
     }
 }