C
Curious
I have:
if (temp.Contains("Account") == true)
{
temp.Replace("Account", "Client");
}
The "Account" is not replaced by "Client" after this operation. I used
debugger and see temp remains the same after "Replace".
Any advice? Thanks!
if (temp.Contains("Account") == true)
{
temp.Replace("Account", "Client");
}
The "Account" is not replaced by "Client" after this operation. I used
debugger and see temp remains the same after "Replace".
Any advice? Thanks!