All Questions
Tagged with parallel-programming .net
3 questions
-2
votes
1
answer
803
views
How to do achieve parallelism in a console application
I have a .net web application, let's say A and a .net console application, let's say B.In A, I have a queue with multiple jobs to be done by B.Once I select the jobs from A, a queue gets created. Each ...
0
votes
3
answers
1k
views
Excute Procedure in Parallel or Async
I have inherited an application which performs approximately 100,000 executions in a C# for-loop against SQL Server.
for (int i=0; i<100000; i++)
{
//Execution can take 0.250 to 5 seconds to ...
0
votes
2
answers
2k
views
Memory allocation of Classes that don't have any global data and locks
static void Main(string[] args)
{
var c2 = new Class2();
var c3 = new Class3();
var c1 = new Class1(c2, c3);
c1.Method1();
}
class Class1
{
...