Esempio n. 1
0
 /// <summary>
 /// 获取字母大小写匹配状态
 /// </summary>
 /// <returns>字母大小写匹配状态</returns>
 public static bool CF_GetMatchCase()
 {
     try
     {
         if (CP_Platform == EPlatform.X86)
         {
             return(ModEverything32.Everything_GetMatchCase());
         }
         else
         {
             return(ModEverything64.Everything_GetMatchCase());
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }