Esempio n. 1
0
 /// <summary>
 /// 获取Everything软件主版本号
 /// </summary>
 /// <returns>主版本号</returns>
 public static uint CF_GetMajorVersion()
 {
     try
     {
         if (CP_Platform == EPlatform.X86)
         {
             return(ModEverything32.Everything_GetMajorVersion());
         }
         else
         {
             return(ModEverything64.Everything_GetMajorVersion());
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }