委托代碼func和Action的基本用法
阿新 • • 發佈:2018-02-13
count 一個 inf 適合 res lec pos string get
這是微軟簡化後的委托寫法,其中,func適合帶返回參數的方法調用,action適合沒有返回參數的方法調用
FUNC方法代碼:
public string GetPeopleInfo(string name, int age) { return $"姓名:{name},年齡:{age}"; }
FUNC調用代碼:,func的最後一個參數是返回類型,如果是無參的方法調用,那麽尖括號只寫返回值的類型即可
Func<string, int, string> fuc = new Func<string,int, string>(GetPeopleInfo); var res =fuc("吉姆",12);
ACTION方法代碼:
public void GetPeopleCount(int newNum,int oldNum) { newNum = newNum + oldNum; }
ACTION調用代碼:
Action<int, int> action = new Action<int, int>(GetPeopleCount); action(1,2);
委托代碼func和Action的基本用法