Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ thread ] /
Makaleler-Article(s)
thread ile ilgili toplam 1 makale bulundu ! (A total of 1 article(s) about thread was(were) found in all of articles!)
Article |
---|
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.
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
|
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.