/// <summary> /// 获取全字匹配状态 /// </summary> /// <returns>全字匹配状态</returns> public static bool CF_GetMatchWholeWord() { try { if (CP_Platform == EPlatform.X86) { return(ModEverything32.Everything_GetMatchWholeWord()); } else { return(ModEverything64.Everything_GetMatchWholeWord()); } } catch (Exception ex) { throw ex; } }