System.Temperature.ConvertToCelsius C# (CSharp) Méthode

ConvertToCelsius() public static méthode

Converts a temperature in Celsius to Fahrenheit.
public static ConvertToCelsius ( this fahrenheit ) : float
fahrenheit this The temperature in Celsius.
Résultat float
		public static float ConvertToCelsius(this float fahrenheit) => (fahrenheit - 32f) * 5f / 9f;