借用下别人的图
foreach里遍历顺序列出来
只能本人写算法吗?
foreach里遍历顺序列出来
只能本人写算法吗?
解决方案
2
http://bbs.csdn.net/topics/350096947
fileList= fileList.OrderBy(s =>int.Parse( Regex.Match(s, @”\d+”).Value)).ToArray();
fileList= fileList.OrderBy(s =>int.Parse( Regex.Match(s, @”\d+”).Value)).ToArray();
3
http://blog.sina.com.cn/s/blog_752ca76a010173tr.html
35
Array.Sort(fileEntries, (x1, x2) => int.Parse(Regex.Match(x1.Name, @”\d+”).Value).CompareTo(int.Parse(Regex.Match(x2.Name, @”\d+”).Value)));