Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Amir Katz

Amir Katz

Amir Katz has asked 6 questions and find answers to 3 problems.

Stats

87
EtPoint
15
Vote count
6
questions
3
answers

About

As a proud dad and developer I can say that 3 kids can be described as:


public MyLife()
{
    var kid1 = Task.Factory.StartNew(() => Run());
    var kid2 = Task.Factory.StartNew(() => Run());
    var kid3 = Task.Factory.StartNew(() => Run());
} try{
    Task.WaitAll(kid1, kid2, kid3);
} catch { //Call mom }