Esempio n. 1
0
 /// <summary>
 /// 获取结果的排序方式
 /// </summary>
 /// <returns>排序方式</returns>
 public static ESortMode CF_GetSort()
 {
     try
     {
         if (CP_Platform == EPlatform.X86)
         {
             return((ESortMode)ModEverything32.Everything_GetSort());
         }
         else
         {
             return((ESortMode)ModEverything64.Everything_GetSort());
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }