Thread Metodu Örnek
Bu örnekte Thread yani iş parçacığı metodunun kullanımını göreceğiz.
Formunuza 1 adet Button ekleyin. Aşağıdaki şekli inceleyin.
Şekil 1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Thread thread = Thread.CurrentThread;
thread.Name = "CSharp Thread Örnek..";
}
private void button1_Click(object sender, EventArgs e)
{
Thread thread = Thread.CurrentThread;
MessageBox.Show("Thread Adı: " + thread.Name);
}
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN