I have this string:
string ID = 6FA186D2-1246-4691-8560-7BDAC7D10699
And I tried to get rid of the "-", so I went with:
private string FormatProductID()
{
return = selectedPackage.id.Trim('-');
}
But this returns only the original string, and doenst alter it at all. I tried using "–" instead of "-" but the result is the same.
Am I using this function wrong?
Thanks!