我想在此代码上使用重定向到动作结果,它给出一个空值,但我有几个 if 语句,并且代码变得越来越复杂,需要一个解决方案来解决我如何使用输出空值的重定向到动作,请帮忙?
public ActionResult Convert(double temperature, string convertTo)
{
ViewBag.Temperature = temperature;
ViewBag.ConvertTo = convertTo;
if (convertTo.Equals("Celsius"))
{ ViewBag.ConvertedTemperature = this.FahrenheitToCelsius(temperature); }
else
{ ViewBag.ConvertedTemperature = this.CelsiusToFahrenheit(temperature); }
return View("Convert");
}