如何使用linq正确填充此字符串数组?

时间:2018-05-23 01:39:36

标签: c# asp.net linq

尝试使用linq填充字符串数组,但我的调试行仅在我的网站'debug'而不是'debug1'中工作。

我很难看到我的阵列出了什么问题,但我知道我的目录是正确的。

string class_dir = ConfigurationManager.AppSettings["class_dir"];

string[] file_list = Directory.GetFiles(class_dir).Where(i => dependencies.Contains(i.ToLower())).ToArray<string>(); 

input2.Value = "debug";

foreach (string filename in file_list)
        {
            input2.Value = "debug1";
        }

0 个答案:

没有答案