I have a percentage string in c# and want to return it into a double value.
for example . . .
string p = "6%";
Now I want to turn this string into
double value = 0.06;
How can I so that? I tried to use Math.Round() and put -2 in the digits to be rounded but it only allows numbers 0-15.
I am glad for any help you could offer.