C# में बेनामी विधियों का उपयोग करते हुए, C# में एक प्रतिनिधि पैरामीटर के रूप में एक कोड ब्लॉक पास करें। बेनामी विधियाँ बिना नाम वाली विधियाँ हैं, केवल शरीर।
इस तरह आप बेनामी तरीके घोषित कर सकते हैं -
delegate void DemoMethod(int n); ... DemoMethod dm = delegate(int a) { Console.WriteLine("Our Anonymous Method: {0}", a); };
जैसा कि ऊपर दिखाया गया है, निम्नलिखित अनाम विधि का मुख्य भाग है -
Console.WriteLine("Our Anonymous Method: {0}", a);
उदाहरण
आप C# में बेनामी विधियों को लागू करने के लिए निम्नलिखित कोड को चलाने का प्रयास कर सकते हैं -
using System; delegate void Demo(int n); namespace MyDelegate { class TestDelegate { static int num = 10; public static void DisplayAdd(int p) { num += p; Console.WriteLine("Named Method: {0}", num); } public static void DisplayMult(int q) { num *= q; Console.WriteLine("Named Method: {0}", num); } public static int getNum() { return num; } static void Main(string[] args) { Demo dm = delegate(int x) { Console.WriteLine("Anonymous Method: {0}", x); }; //calling the delegate using the anonymous method dm(15); //instantiating the delegate using the named methods dm = new Demo(DisplayAdd); //calling the delegate using the named methods dm(10); //instantiating the delegate using another named methods dm = new Demo(DisplayMult); //calling the delegate using the named methods dm(4); Console.ReadKey(); } } }
आउटपुट
Anonymous Method: 15 Named Method: 20 Named Method: 80