How can I set the initial parameters of a thread? For example:
VB Code:
  1. private sub eheheheh()
  2.     param1=0
  3.     param2=4
  4.     Dim x As New Threading.Thread(AddressOf DoOperation)
  5.     x.Start()
  6. end sub
  7. Private sub DoOperation
  8.     Result=param1+param2
  9.     'Do your stuff...
  10. end sub
Notice that I don't want to wait for this operation to finish, I want only to set the initial parameters of the thread. And I don't want to use local variables because sub eheheheh can be called several times...
Any ideas?

Thx,
Xmas79