string[] a = {"a", "b"};

            string[] b = { "b", "c", "d" };

            var data = (from t1 in a select t1).Union(from t2 in b select t2);
            foreach (var str in data)
            {
                MessageBox.Show(str);
            }

相关文章:

  • 2021-09-23
  • 2021-09-22
  • 2022-12-23
  • 2021-12-18
  • 2022-12-23
  • 2021-11-14
猜你喜欢
  • 2022-12-23
  • 2021-12-03
  • 2021-07-19
  • 2021-11-20
  • 2022-02-15
  • 2022-12-23
  • 2021-10-19
相关资源
相似解决方案