美文网首页
Real Usefulness of Delegates

Real Usefulness of Delegates

作者: 津涵 | 来源:发表于2019-02-18 14:21 被阅读0次

coding:

BubbleSorter.cs:


1.png

注:
1)指向一个方法
The comparison must refer to a method that takes two arguments, and returns true if the value of the first argument is smaller than the second one.
2)方法的指针
You instantiated an array of delegates to store references of two methods.

Employee.cs:


2.png

Main.cs:


4.png

Result:


3.png

相关文章

网友评论

      本文标题:Real Usefulness of Delegates

      本文链接:https://www.haomeiwen.com/subject/ddeaeqtx.html