. NET Simple Multithreading

Source: Internet
Author: User

Cancel Cross-thread access

Control.checkforillegalcrossthreadcalls = false;

1. Open a new thread

No parameters

        Thread thread = new Thread(方法名);        thread.Start();

With parameters

The method parameter needs to be set to object when used and then strongly turned down.

        Thread thread = new Thread(方法名);        thread.Start(参数);
2. Background Threads

The threads that are created by default are foreground threads. As long as there is a foreground thread running, the program will not exit.

When set to a background thread, all foreground threads in the program exit, and the running background thread is forced to stop.

thread.IsBackground = true;
3. Updating the UI thread

By defining an action delegate to execute

            Action act = delegate            {              //更新操作            };            this.Invoke(act);
Process 1. Start the program
Process.Start("EXE文件全路径");
2. Open the specified folder
Process.Start("explorer.exe", 文件夹路径);  

MORE: Multithreading in C #

. NET Simple Multithreading

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.