Create two threads : Thread Create « Thread « VB.Net Tutorial






Imports System.Threading
public class Test
   public Shared Sub Main
               Dim thread1 As New Thread(AddressOf method1)
               Dim thread2 As New Thread(AddressOf method2)
               thread1.Start()
               thread2.Start()
   End Sub

       Private Shared Sub method1()
               Dim i As Integer
               For i = 1 To 4
                       Console.WriteLine("Method1: " & i)
                       Thread.CurrentThread.Sleep(250)
               Next
       End Sub
       
       Private Shared Sub method2()
               Dim i As Integer
               For i = 1 To 4
                       Console.WriteLine("Method2: " & i)
                       Thread.CurrentThread.Sleep(250)
               Next
       End Sub

End class
Method1: 1
Method2: 1
Method1: 2
Method2: 2
Method1: 3
Method2: 3
Method1: 4
Method2: 4








23.1.Thread Create
23.1.1.Create Threads
23.1.2.Create two threads
23.1.3.Read a file in a thread
23.1.4.Creating and using a ParameterizedThreadStart delegate with a static method and an instance method.