using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace Delegate
{
public delegate void Myfunction(); class Program
{ static void Main(string[] args)
{ Myfunction mf = MethodA;
mf += MethodB;
mf(); Console.ReadLine(); } public static void MethodA() {
Console.WriteLine("A doing");
}
public static void MethodB()
{
Console.WriteLine("B doing");
}
public static void MethodC()
{
Console.WriteLine("C doing");
}
}
}
相关文章
- 11-20when ‘while‘ meets the ‘function‘
- 11-20std::function详解
- 11-20easyui中在formatter: function (value, row,index) {中添加删除方法
- 11-20$(".chat-message").each(function(){}); 的使用
- 11-20管道函数(pipelined function)简单使用示例
- 11-20创建包含Function回值的Optional作为map方法返回值,否则返回空Optional
- 11-20ggsurvplot_combine R语言 一张图内画多条生存曲线
- 11-20[TypeScript] Infer the Return Type of a Generic Function Type Parameter
- 11-20sql连着function使用
- 11-20Insert Function before and after main function