============================================多播委托
-------------------------------------主程序
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { //多播委托只能使用無返回值的委托 //當str1執行失敗后會阻止后面的方法的執行 Action<string> a = str1; a += str2; a += str2; a += str2; a += str2; StrAndName(a, "文聘"); Console.ReadKey(); } static void str1(string name) { Console.WriteLine("看我{0}的厲害", name); } static void str2(string name) { Console.WriteLine("受死吧!{0}", name); } static void StrAndName(Action<string> action, string name) { action(name); } } }
============================================匿名方法
-------------------------------------主程序
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { string s = "你好!"; //不能使用break,goto,continue,ref,out Action<string> a = delegate(string str) { Console.WriteLine(s + str); Console.ReadKey(); }; a("我叫張飛"); } } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。