C# 匿名方法 1027
2020-12-13 13:43
标签:blog io ar for sp div on art log ///刚开始研究匿名方法和Lambda表达式,试着写了一个例子 这段代码在开始的时候初始化了一个字符串列表(string list),然后通过列表的FindAll方法来查找以“sunny”起始的字符串,最后将所查找到的所有结果输出。 C# 匿名方法 1027 标签:blog io ar for sp div on art log 原文地址:http://www.cnblogs.com/alphafly/p/4053774.html class Program {
static void Main(string[] args) {
SorAndShowFiles("Sorted by name", delegate(FileInfo f1, FileInfo f2) {
return f1.Name.CompareTo(f2.Name);
}
);
Console.ReadKey();
}
delegate void SampleDelegate(string x);
public static void CandidateAction(string x) {
Console.WriteLine("CandidateAction");
}
public static void SorAndShowFiles(string title, Comparison
List