1
This code should do it:
string s = "$3,456,789";
string t = s.Substring(1).Replace(",", "");
double d = double.Parse(t);
d = Math.Round(d/100000) * 100000;
t = d.ToString("C0"); // $3,500,000
Accepted 0
I didn't think of dividing and then multiplying... that is great. (and actually stripping out the commas isn't needed because it is originally a double but I was using the ToString("C") to display it as currency.)
Thanks for the quick answer.