C # Delegate Delegate

Source: Internet
Author: User

Delegate: Store function Reference type

return type and parameter consistency

Using system;using system.collections.generic;using system.linq;using system.text;using System.Threading.Tasks;        Namespace Ch06ex05{class Program {delegate double processdelegate (double param1, double param2);        Static double Multiply (double param1, double param2) {return param1 * PARAM2;        } static double Divide (double param1, double param2) {return param1/param2;            } static void Main (string[] args) {processdelegate process;            Console.WriteLine ("Enter 2 numbers separated with a comma:");            string input = Console.ReadLine (); int commapos = input.            IndexOf (', '); Double param1 = convert.todouble (input.            Substring (0, Commapos)); Double param2 = convert.todouble (input. Substring (Commapos + 1, input.            LENGTH-COMMAPOS-1));            Console.WriteLine ("Enter M to multiply or D to divide:");input = Console.ReadLine ();            if (input = = "M") process = new Processdelegate (Multiply);            else process = new Processdelegate (Divide);            Console.WriteLine ("Result: {0}", Process (param1, param2));        Console.readkey (); }    }}

Why not judge the parameters to pass in and choose different function methods, rather than to delegate it also want to new delegate class ...

C # Delegate Delegate

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.