input string was not in a correct format convert to double

Code Example - input string was not in a correct format convert to double

                
                        if (!double.TryParse("10.23", out double result))
{
	return "Invalid!";
}

return %%%~COMPRESS~PRE~0~%%%quot;Result is {result}";