/// <summary> /// 获取结果的实际排序顺序 /// </summary> /// <returns>排序顺序</returns> public static ESortMode CF_GetResultListSort() { try { if (CP_Platform == EPlatform.X86) { return((ESortMode)ModEverything32.Everything_GetResultListSort()); } else { return((ESortMode)ModEverything64.Everything_GetResultListSort()); } } catch (Exception ex) { throw ex; } }