/// <summary> /// 启用或禁用字母大小写匹配 /// </summary> /// <param name="bEnable">字母大小写匹配状态</param> public static void CF_SetMatchCase(bool bEnable) { try { if (CP_Platform == EPlatform.X86) { ModEverything32.Everything_SetMatchCase(bEnable); } else { ModEverything64.Everything_SetMatchCase(bEnable); } } catch (Exception ex) { throw ex; } }