Can someone explain why I get different results from these two statements? I thought that reassigning the value to the same variable would result in the value I get in the above example. What am I missing here?
_body.Replace("##" + _variableName + "##",
templateVariables[_variableName])
Hello pitty ##LastName##,
_body = _body.Replace("##" + _variableName.ToUpper() + "##",
templateVariables[_variableName])
Hello ##FirstName## ##LastName##,
