ホームページ  >  記事  >  バックエンド開発  >  パラメータをスレッドに渡す C# プログラム

パラメータをスレッドに渡す C# プログラム

WBOY
WBOY転載
2023-08-27 10:25:09863ブラウズ

将参数传递给线程的 C# 程序

スレッドを使用するには、コードに次の名前空間を追加します -

using System.Threading;

まず、C# で新しいスレッドを作成する必要があります -

Thread thread = new Thread(threadDemo);

上記の threadDemo はスレッド関数です。

次に、スレッドにパラメータを渡します-

thread.Start(str);

上で設定したパラメータは-

String str = "Hello World!";

Example

C# でパラメータを渡すことを見てみましょう。完全なコードをスレッドに追加します。

リアルタイムデモ p>

using System;
using System.Threading;
namespace Sample {
   class Demo {
      static void Main(string[] args) {
         String str = "Hello World!";
         // new thread
         Thread thread = new Thread(threadDemo);
         // passing parameter
         thread.Start(str);
      }
      static void threadDemo(object str) {
         Console.WriteLine("Value passed to the thread: "+str);
      }
   }
}

出力

Value passed to the thread: Hello World!

以上がパラメータをスレッドに渡す C# プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。