Tag performance

Comparison async, sync and delegates

Made a time execution comparison between a usual syncronous, asynchronous and a threaded method call with delegates. //Declare delegate public delegate void DelGetList(List<int> lista, string tName); //Create delegate handler DelGetList delReporter = ReportList; //Init method private void Init() { TestThreads();…