C # using an asynchronous delegate to update a form on another thread cannot omit optional arguments

Source: Internet
Author: User

Update Label1 with button1:

        Private Delegate voidUpdateforminvoke (stringAstringb ="B"); Private voidUpdateForm (stringAstringb ="B") {Label1. Text= A +" - "+b; }        Private voidButton1_Click (Objectsender, EventArgs e) {Thread th=NewThread (Test); Th.        Start (); }        voidTest () {Updateforminvoke Uli=NewUpdateforminvoke (UpdateForm);  This. BeginInvoke (Uli,New Object[] {"A" }); }

Parameter count mismatch exception:

Modify Code 1:

        Private Delegate void Updateforminvoke (stringstring"B");         Private void UpdateForm (stringstring  b)        {            "" + b;        }

Modify Code 2:

        Private Delegate void Updateforminvoke (stringstring  b);         Private void UpdateForm (stringstring"B")        {             "  " + B;        }

The same error occurred as a result

Modify Code 3:

        void Test ()        {            new  Updateforminvoke (updateform);              This New Object " A " " B "  });        }

No optional arguments are omitted, no exception.

C # using an asynchronous delegate to update a form on another thread cannot omit optional arguments

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.