Action匿名委托示例
摘要:class Program { static void Main(string[] args) { string mid = ",mid"; Action anonDel = delegate (string param)...
阅读全文
posted @
2015-09-04 21:46
USID
阅读(368)
推荐(0)
Func委托示例
摘要:class BubbleSorter { public static void Sort(IList sortArray, Func comparison) { bool swapped = true; do ...
阅读全文
posted @
2015-09-04 21:20
USID
阅读(286)
推荐(0)