List<string> subWGCarNo = WGCarNo.FindAll(GSMatchCarNo);


private bool GSMatchCarNo(string s)
        {
            if (s.IndexOf(com_vehicle_code.Text.Trim()) > -1)
            {
                return true;
            }
            return false;
        }

相关文章:

  • 2021-12-23
  • 2021-09-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-09
  • 2021-07-04
  • 2021-06-22
  • 2021-07-16
  • 2022-12-23
  • 2021-05-22
  • 2022-12-23
相关资源
相似解决方案