System.Temperature.ConvertToFahrenheit C# (CSharp) Метод

ConvertToFahrenheit() публичный статический Метод

Converts a temperature in Fahrenheit to Celsius.
public static ConvertToFahrenheit ( this celsius ) : float
celsius this The temperature in Fahrenheit.
Результат float
		public static float ConvertToFahrenheit(this float celsius) => (celsius * 9f / 5f) + 32f;
	}