Start a Thread : Thread Basics « Thread « VB.Net






Start a Thread

Imports System
Imports System.Drawing
Imports System.Threading
Imports System.Windows.Forms
Imports System.IO


public class MainClass

   Shared Sub Main()
        Dim Thrd As Thread
        Dim TStart As New ThreadStart(AddressOf BusyThread)
        Thrd = New Thread(TStart)
        Thrd.Priority = ThreadPriority.Highest
        Thrd.Start()


   End Sub
   Shared Sub BusyThread()
        While True
            Console.WriteLine("in thread")
        End While
    End Sub

End Class




           
       








Related examples in the same category

1.Put time-consuming Task in ThreadPut time-consuming Task in Thread
2.Define method and Run inside a ThreadDefine method and Run inside a Thread
3.Shows multiple threads that print at different intervalsShows multiple threads that print at different intervals