Beispiel #1
0
 private static bool IsEncrypted(string text, out string clearText)
 {
     clearText = "";
     try
     {
         clearText = SaveFile.Decrypt(text);
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }