Example of my string value
string amtStr = "{100,000,000.00}";
Expected result/output
double amt = -100,000,000.00
What I've tried but it gives me error "Cannot convert from 'string' to 'System.IFormatProvider'"
Convert.ToDouble(txtAmount.Text.ToString("#,0.00;-#,0.00"))
Try this code