You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System;
|
|
|
|
namespace Study.DelegateSeries.Core
|
|
{
|
|
/// <summary>
|
|
/// 委托学习
|
|
/// </summary>
|
|
public class StudyDelegate
|
|
{
|
|
/*
|
|
* 委托系列学习
|
|
* 1、委托概念
|
|
* 2、定义与使用委托
|
|
* 3、多播委托
|
|
* 4、使用匿名方法
|
|
* 5、使用Lamda表达式
|
|
* 6、委托使用场景
|
|
* 7、委托与事件
|
|
* 8、委托与接口
|
|
* 9、其它
|
|
* 10、总结
|
|
*/
|
|
|
|
}
|
|
}
|