Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
string testFile = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "testfile.txt");
File.WriteAllText(testFile, "This is a test");
Stopwatch watch = new Stopwatch();
watch.Start();
encryption.SecureFileErase(testFile, SecureEraseAlgorithm.Dod7);
watch.Stop();
Console.WriteLine("Elapsed: " + watch.ElapsedMilliseconds);
bool fileExists = File.Exists(testFile);
Console.WriteLine("File Exists: {0}", fileExists);