Is it multitasking?(c#3.0)
Posted
by Newbie
on Stack Overflow
See other posts from Stack Overflow
or by Newbie
Published on 2010-06-08T06:57:12Z
Indexed on
2010/06/08
7:02 UTC
Read the original article
Hit count: 114
c#3.0
Consider the below program
factorThread = new Thread(
new ThreadStart(
delegate
{
Method1();
Method2();
}
)
);
Is it that 2 threads are getting called parallely(multitasking) or a single thread is calling the methods sequentially?
It's urgent.
Thanks
© Stack Overflow or respective owner