Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 505 Bytes

File metadata and controls

23 lines (18 loc) · 505 Bytes

Speed v1.0

MultiThreading made easy

Speed ​​is a multithreading Class Library that will help Windows Forms developers to make quick and fluent interfaces.

How to get started

##Examples

Dim multi As New Speed.MultiThreading(Me)

multi.Run(Sub()
	For i As Integer = 0 To 100000
		'Sending data to the interface thread
		multi.ThreadSafe(i, Sub(n As Integer)
			'Display the number on the interface
			Label1.Text = n
		End Sub)
	Next
End Sub)