Bu yazıda, bir iş parçacığına parametre geçmek için bir C# programı yazacağız.
C# Kodu:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | class Program { public static void Main() { Thread newThread = new Thread(Gorev1); newThread.Start(123456); Program p = new Program(); newThread = new Thread(p.Gorev2); newThread.Start("Merhaba Dünya"); Console.ReadLine(); } public static void Gorev1(object data) { Console.WriteLine("Static Thread : Veri ='{0}'", data); } public void Gorev2(object data) { Console.WriteLine("Örnek Thread : Veri ='{0}'", data); } } |
Çıktı:
1 2 3 4 | Static Thread : Veri ='123456' Örnek Thread : Veri ='Merhaba Dünya' |
Yorum Yap