I have the following property:
public string InstanceName
{
get
{
return cbServerInstanceName.Text;
}
}
where the input for
cbServerInstanceName.Text = "ServerName\ PcName"
This is showing up as
"ServerName\\ PcName"
I tried using the string.replace but couldnt get it to work.
Any ideas?