V
Vijaye Raji
I create a test app in C# as below:
using System
namespace Test1
{
class Test2
{
static void Main()
{
Console.ReadLine();
}
}
}
When I compile and run this app, I see this "tiny" app, running 4 threads.
Accounting one for the garbage collector, what are the other two threads and
what are their functions?
-vJ
using System
namespace Test1
{
class Test2
{
static void Main()
{
Console.ReadLine();
}
}
}
When I compile and run this app, I see this "tiny" app, running 4 threads.
Accounting one for the garbage collector, what are the other two threads and
what are their functions?
-vJ