Log in

View Full Version : Create new thread using C#


Forobet.com
04-26-2007, 01:24 PM
I want to create a new thread using .Net framework. I was looking for examples but only see php samples.

It's posible to do that?

ElfMage
04-29-2007, 04:13 AM
I think that this forum is limited to discussions on vBulletin... :rolleyes:

But, to answer your question, you can create a thread in C# as follows:


using System;
using System.Threading;

Thread t = new Thread(new ThreadStart(ThreadProc));
t.Start();
Where ThreadProc is the name of the static function that the thread will execute.

Lays
05-04-2007, 06:51 PM
I don't think that's what he means. He wants to make a C# program that can make posts and threads, etc, etc.

Michael Morris
05-05-2007, 11:08 PM
He might as well right his own bulletin board software. I bet he'd make a cool penny off it too except for this little problem - .NET sucks. Long live Linux :D

ElfMage
05-06-2007, 12:36 AM
I don't think that's what he means. He wants to make a C# program that can make posts and threads, etc, etc.

:D, that's a bit more complex.. :rolleyes:

In that case he will need to use MySQL's OLE DB Provider. It is easier to do it in PHP.

He might as well right his own bulletin board software. I bet he'd make a cool penny off it too except for this little problem - .NET sucks. Long live Linux :D

... that's already done: www.communityserver.org ..... :rolleyes:

And they do charge a pretty penny for it. $400 for Small Business, and $2000 for the Pro version. And then there is a bunch of add-ons costing some more.

Michael Morris
05-06-2007, 05:15 AM
Not surprising. Anything built to run on a M$ platform is overpriced. I mean, if you can drop $1000 for the OS, you must be loaded enough to drop half that for a forum package eh?