Exemple #1
0
 static void Main(string[] args)
 {
     Console.WriteLine("******* Starting PST **********");
     PSTLoader pstLoader = new PSTLoader();
     Console.WriteLine("******* Loaded PST information into DB! Press any key to exit. *********");
     Console.ReadKey();
 }
 private void ProcessPST(string fileName)
 {
     PSTLoader pstLoader = new PSTLoader();
     pstLoader.PSTFilePath = fileName;
     pstLoader.ParseMailBoxFolders();
 }