ใช้คำหลักใหม่เพื่อสร้างตัวอย่างผู้รับมอบสิทธิ์ เมื่อสร้างผู้รับมอบสิทธิ์ อาร์กิวเมนต์ที่ส่งไปยังนิพจน์ใหม่จะถูกเขียนคล้ายกับการเรียกเมธอด แต่ไม่มีอาร์กิวเมนต์ของเมธอด
ตัวอย่างเช่น −
public delegate void printString(string s); printString ps1 = new printString(WriteToScreen);
คุณยังสามารถยกตัวอย่างผู้รับมอบสิทธิ์โดยใช้วิธีการที่ไม่ระบุชื่อ -
//declare delegate void Del(string str); Del d = delegate(string name) { Console.WriteLine("Notification received for: {0}", name); };
ให้เราดูตัวอย่างที่ประกาศและสร้างตัวอย่างตัวแทน -
ตัวอย่าง
using System; delegate int NumberChanger(int n); namespace DelegateAppl { class TestDelegate { static int num = 10; public static int AddNum(int p) { num += p; return num; } public static int MultNum(int q) { num *= q; return num; } public static int getNum() { return num; } static void Main(string[] args) { //create delegate instances NumberChanger nc1 = new NumberChanger(AddNum); NumberChanger nc2 = new NumberChanger(MultNum); //calling the methods using the delegate objects nc1(25); Console.WriteLine("Value of Num: {0}", getNum()); nc2(5); Console.WriteLine("Value of Num: {0}", getNum()); Console.ReadKey(); } } }
ผลลัพธ์
Value of Num: 35 Value of Num: 175