Guest User

Untitled

a guest
Jun 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Public Sub ProcessWork()
  2. ThreadPool.QueueUserWorkItem(AddressOf ProcessToolWork)
  3. End Sub
  4.  
  5. Private Sub ProcessToolWork()
  6.  
  7. End Sub
  8.  
  9. ThreadPool.QueueUserWorkItem(New WaitCallback(AddressOf ProcessToolWork))
  10.  
  11. Private Sub ProcessToolWork(ByVal ignored As Object)
  12.  
  13. End Sub
Add Comment
Please, Sign In to add comment