|
-
Oct 24th, 2002, 01:48 PM
#1
Thread Starter
yay gay
multithreading
how do i do the "standard" vb.net multithreading
Code:
dim mThread as new Thread(addressOf mFunction)
mThread.Start()
in C#?
-
Oct 24th, 2002, 04:38 PM
#2
PowerPoster
You don't use the address of operator. Just a function that doesn't return a value, and takes no arguements.
-
Oct 24th, 2002, 05:23 PM
#3
Thread mThread = new Thread(mFunction);
mThread.Start()
Converting from VB.NET to C# is dead easy.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 24th, 2002, 06:10 PM
#4
Thread Starter
yay gay
i did this lol:
Code:
Thread ttThread = new Thread(new ThreadStart(startDownloadThread));
ttThread.Start();
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|