c# Linq方法遍历文件夹下的dll文件

string[] array = (from p in Directory.GetFiles("plugins")
				where p.EndsWith(".dll")
				select p).ToArray<string>();

遍历文件下的后缀是dll的文件,然后放到数组里

你可能感兴趣的:(c#,from,linq)