/// <summary>
 /// AutoLoads the commands the user wants to load at startup.
 /// </summary>
 public static void AutoLoad()
 {
     try {
         CSharpProvider.AutoLoad(File.ReadAllLines(autoLoadFilenameCSharp));
         VBProvider.AutoLoad(File.ReadAllLines(autoLoadFilenameVB));
     } catch { }
 }