I've seen a number of example scripts online that use this. Most recently, I saw it in a script on automating TFS:
[string] $fields = "Title=$($taskTitle);Description=$($taskTitle);Assigned To=$($assignee);"
$fields += "Area Path=$($areaPath);Iteration Path=$($iterationPath);Discipline=$($taskDisciplineArray[$i]);Priority=$($i+1);"
$fields += "Estimate=$($taskEstimateArray[$i]);Remaining Work=$($taskRemainingArray[$i]);Completed Work=$($tasktaskCompletedArray[$i])"
From what I can tell, $($taskTitle) seems to be equivalent to $taskTitle. Am I missing something? Is there any reason to use the parenthesis and extra dollar sign?
"Area Path=$($areaPath);"the parens are unnecessary."Area Path=$areaPath;"would work equally well. That is, simple variable expansion just works within a double quoted string. You need the parens when you need to evaluate an expression like $($variable.property) or $($variable + 1). – Keith Hill Nov 29 '12 at 0:06