private static string ParseOS()
 {
     try
     {
         return(OsGatherer.GetCaption() + " " + OsGatherer.GetOSArchitecture());
     }
     catch
     {
         return("UNKNOWN");
     }
 }
Exemple #2
0
        // Token: 0x0600001A RID: 26 RVA: 0x00002BD8 File Offset: 0x00000DD8
        private static string ParseOS()
        {
            string result;

            try
            {
                result = OsGatherer.GetCaption() + " " + OsGatherer.GetOSArchitecture();
            }
            catch
            {
                result = "UNKNOWN";
            }
            return(result);
        }