Exemple #1
0
        public static string GetLatestDMD1Url()
        {
            CheckThread();
            int ver;

            return(DigitalMars.GetLatestDMDInfo(1, out ver));
        }
Exemple #2
0
        public static int GetLatestDMD2Version()
        {
            CheckThread();
            int ver;

            DigitalMars.GetLatestDMDInfo(2, out ver);
            return(ver);
        }
Exemple #3
0
 private static void Preload()
 {
     try
     {
         LocalCompiler.Refresh();
         DigitalMars.PreloadFromHtmlList(fileListLocation);
         DigitalMars.Preload();
         LocalCompiler.Preload();
     }
     catch (ThreadAbortException)
     {
         //do nothing now - just return
     }
     catch (Exception)
     {
         //do nothing now - just return
     }
 }