Is there any functional difference between these to function calls.

Method1:

public static void PrintMe(object obj)
{
    Task task = new Task(() =>
    {
        Console.WriteLine(obj.ToString());
    });
    task.Start();
}

Method2:

public static void PrintMe(object obj)
{
    Task task = new Task((object arg) =>
    {
        Console.WriteLine(arg.ToString());
    }, obj);
    task.Start();
}
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

The first one passes the variable obj to the task. The second one passes the value of obj.

To see the difference assign something else to obj after creating the task.

public static void PrintMe(object obj)
{
    Task task = new Task(() =>
    {
        Console.WriteLine(obj.ToString());
    });
    obj = "Surprise";        
    task.Start();
}
link|improve this answer
feedback

Yes there is. The second method only allocates memory for the task. The first method allocates both memory for the task and it restructures the method itself allocating a new instance for the shared locals/parameters, in this case obj

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.