C # delegation and delegation chain,

Source: Internet
Author: User

C # delegation and delegation chain,

Delegation is an important feature of c. The Code is as follows:

Class Program {public delegate void DelegateTest (); static void Main (string [] args) {DelegateTest dtstatic = new DelegateTest (Program. method1); // instantiation, static method, no new DelegateTest dtinstance = new DelegateTest (new Program (). method2); // instance method, which requires new DelegateTest delegatechain = null; // The delegation Chain Defined as null delegatechain + = dtinstance; // use "+" to add the delegated instance delegatechain + = dtstatic; // delegatechain (); Console. read ();} private static void method1 () {Console. writeLine ("static method output");} private void method2 () {Console. writeLine ("instance method output ");}}

The running result is as follows:

From the results, we can see that the execution sequence of the delegate chain is the order in which the delegated instance is added;

Similarly, you can also use "-" to remove the delegated instance from the delegated chain:

Class Program {public delegate void DelegateTest (); static void Main (string [] args) {DelegateTest dtstatic = new DelegateTest (Program. method1); // instantiation, static method, no new DelegateTest dtinstance = new DelegateTest (new Program (). method2); // instance method, which requires new DelegateTest delegatechain = null; // The delegation Chain Defined as null delegatechain + = dtinstance; // use "+" to add the delegated instance delegatechain + = dtstatic; delegatechain-= dtstatic; // use "-" to remove the delegated instance delegatechain (); Console. read ();} private static void method1 () {Console. writeLine ("static method output");} private void method2 () {Console. writeLine ("instance method output ");}

The running result is as follows:

 

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.