if (string.IsNullOrEmpty(driverList.Find(CheckDriver)))
                {
                    sMessageBox.Warm("驾驶员不存在");
                    return false;
                }
bool CheckDriver(string s)
        {
            if (s.IndexOf(comCompayDriver.Text.Trim()) > -1)
            {
                return true;
            }
            return false;
        }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2021-07-14
  • 2022-01-20
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2021-09-29
  • 2022-12-23
  • 2021-08-14
相关资源
相似解决方案