C
Carmelo
Hi there,
I'm not an experienced C# user so I would like to ask for some help
'cause I get actually lost. Here it goes. I'm trying to use the
'ThreadPool.QueueUserWorkItem()' method in order to create a new
thread and passing through some arguments on a Data Container
class(StoreArguments class). Despite that (theorically perfect) fact,
I have some problems on taking it to the practice.
I do the following:
void Main(...)
{
ThreadPool.QueueUserWorkItem( new WaitCallback(StoreProcess),
storeArgs );
}
I'm not an experienced C# user so I would like to ask for some help
'cause I get actually lost. Here it goes. I'm trying to use the
'ThreadPool.QueueUserWorkItem()' method in order to create a new
thread and passing through some arguments on a Data Container
class(StoreArguments class). Despite that (theorically perfect) fact,
I have some problems on taking it to the practice.
I do the following:
void Main(...)
{
ThreadPool.QueueUserWorkItem( new WaitCallback(StoreProcess),
storeArgs );
}