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

ConvertToFahrenheit() public static méthode

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