摘要: 一个很经典的学习C# 委托的例子跟大家分享一下,希望对大家有点帮助,直接看代码:BubbleSorter.csusing System;using System.Collections.Generic;using System.Text;namespace Wrox.ProCSharp.Delegates{ delegate bool Comparison(object x, object y); class BubbleSorter { static public void Sort(object[] sortArray, Comparison comparer) { for (int i 阅读全文
posted @ 2011-05-06 17:53 it笨笨 阅读(920) 评论(3) 推荐(1)