示例#1
0
 /// <summary>
 /// Converts the Int input to the correct int value.
 /// </summary>
 /// <typeparam name="TInput"> The temperature type to be converted to. </typeparam>
 /// <param name="input"> The value to be converted. </param>
 /// <exception cref="ArgumentException"> The TInput type is not a valid type for this method. </exception>
 /// <returns>
 /// The result of the conversion.
 /// </returns>
 public static int To <TInput>(this IntBase input)
     where TInput : TemperatureBase
 {
     return(typeof(TInput).Name switch
     {
         nameof(Celsius) when input is CelsiusInt castInput => IntParser(CelsiusConverter.CelsiusToCelsius(castInput.Temperature)),
         nameof(Celsius) when input is FahrenheitInt castInput => IntParser(FahrenheitConverter.FahrenheitToCelsius(castInput.Temperature)),
         nameof(Celsius) when input is KelvinInt castInput => IntParser(KelvinConverter.KelvinToCelsius(castInput.Temperature)),
         nameof(Celsius) when input is GasInt castInput => IntParser(GasConverter.GasToCelsius(castInput.Temperature)),
         nameof(Celsius) when input is RankineInt castInput => IntParser(RankineConverter.RankineToCelsius(castInput.Temperature)),
         nameof(Fahrenheit) when input is CelsiusInt castInput => IntParser(CelsiusConverter.CelsiusToFahrenheit(castInput.Temperature)),
         nameof(Fahrenheit) when input is FahrenheitInt castInput => IntParser(FahrenheitConverter.FahrenheitToFahrenheit(castInput.Temperature)),
         nameof(Fahrenheit) when input is KelvinInt castInput => IntParser(KelvinConverter.KelvinToFahrenheit(castInput.Temperature)),
         nameof(Fahrenheit) when input is GasInt castInput => IntParser(GasConverter.GasToFahrenheit(castInput.Temperature)),
         nameof(Fahrenheit) when input is RankineInt castInput => IntParser(RankineConverter.RankineToFahrenheit(castInput.Temperature)),
         nameof(Kelvin) when input is CelsiusInt castInput => IntParser(CelsiusConverter.CelsiusToKelvin(castInput.Temperature)),
         nameof(Kelvin) when input is FahrenheitInt castInput => IntParser(FahrenheitConverter.FahrenheitToKelvin(castInput.Temperature)),
         nameof(Kelvin) when input is KelvinInt castInput => IntParser(KelvinConverter.KelvinToKelvin(castInput.Temperature)),
         nameof(Kelvin) when input is GasInt castInput => IntParser(GasConverter.GasToKelvin(castInput.Temperature)),
         nameof(Kelvin) when input is RankineInt castInput => IntParser(RankineConverter.RankineToKelvin(castInput.Temperature)),
         nameof(Gas) when input is CelsiusInt castInput => IntParser(CelsiusConverter.CelsiusToGas(castInput.Temperature)),
         nameof(Gas) when input is FahrenheitInt castInput => IntParser(FahrenheitConverter.FahrenheitToGas(castInput.Temperature)),
         nameof(Gas) when input is KelvinInt castInput => IntParser(KelvinConverter.KelvinToGas(castInput.Temperature)),
         nameof(Gas) when input is GasInt castInput => IntParser(GasConverter.GasToGas(castInput.Temperature)),
         nameof(Gas) when input is RankineInt castInput => IntParser(RankineConverter.RankineToGas(castInput.Temperature)),
         nameof(Rankine) when input is CelsiusInt castInput => IntParser(CelsiusConverter.CelsiusToRankine(castInput.Temperature)),
         nameof(Rankine) when input is FahrenheitInt castInput => IntParser(FahrenheitConverter.FahrenheitToRankine(castInput.Temperature)),
         nameof(Rankine) when input is KelvinInt castInput => IntParser(KelvinConverter.KelvinToRankine(castInput.Temperature)),
         nameof(Rankine) when input is GasInt castInput => IntParser(GasConverter.GasToRankine(castInput.Temperature)),
         nameof(Rankine) when input is RankineInt castInput => IntParser(RankineConverter.RankineToRankine(castInput.Temperature)),
         _ => throw new ArgumentException($"Invalid type: {typeof(TInput).Name}")
     });
 /// <summary>
 /// Converts the Double input to the correct double value.
 /// </summary>
 /// <typeparam name="TInput"> The temperature type to be converted to. </typeparam>
 /// <param name="input"> The value to be converted. </param>
 /// <exception cref="ArgumentException"> The TInput type is not a valid type for this method. </exception>
 /// <returns>
 /// The result of the conversion.
 /// </returns>
 public static double To <TInput>(this DoubleBase input)
     where TInput : TemperatureBase
 {
     return(typeof(TInput).Name switch
     {
         nameof(Celsius) when input is CelsiusDouble castInput => CelsiusConverter.CelsiusToCelsius(castInput.Temperature),
         nameof(Celsius) when input is FahrenheitDouble castInput => FahrenheitConverter.FahrenheitToCelsius(castInput.Temperature),
         nameof(Celsius) when input is KelvinDouble castInput => KelvinConverter.KelvinToCelsius(castInput.Temperature),
         nameof(Celsius) when input is GasDouble castInput => GasConverter.GasToCelsius(castInput.Temperature),
         nameof(Celsius) when input is RankineDouble castInput => RankineConverter.RankineToCelsius(castInput.Temperature),
         nameof(Fahrenheit) when input is CelsiusDouble castInput => CelsiusConverter.CelsiusToFahrenheit(castInput.Temperature),
         nameof(Fahrenheit) when input is FahrenheitDouble castInput => FahrenheitConverter.FahrenheitToFahrenheit(castInput.Temperature),
         nameof(Fahrenheit) when input is KelvinDouble castInput => KelvinConverter.KelvinToFahrenheit(castInput.Temperature),
         nameof(Fahrenheit) when input is GasDouble castInput => GasConverter.GasToFahrenheit(castInput.Temperature),
         nameof(Fahrenheit) when input is RankineDouble castInput => RankineConverter.RankineToFahrenheit(castInput.Temperature),
         nameof(Kelvin) when input is CelsiusDouble castInput => CelsiusConverter.CelsiusToKelvin(castInput.Temperature),
         nameof(Kelvin) when input is FahrenheitDouble castInput => FahrenheitConverter.FahrenheitToKelvin(castInput.Temperature),
         nameof(Kelvin) when input is KelvinDouble castInput => KelvinConverter.KelvinToKelvin(castInput.Temperature),
         nameof(Kelvin) when input is GasDouble castInput => GasConverter.GasToKelvin(castInput.Temperature),
         nameof(Kelvin) when input is RankineDouble castInput => RankineConverter.RankineToKelvin(castInput.Temperature),
         nameof(Gas) when input is CelsiusDouble castInput => CelsiusConverter.CelsiusToGas(castInput.Temperature),
         nameof(Gas) when input is FahrenheitDouble castInput => FahrenheitConverter.FahrenheitToGas(castInput.Temperature),
         nameof(Gas) when input is KelvinDouble castInput => KelvinConverter.KelvinToGas(castInput.Temperature),
         nameof(Gas) when input is GasDouble castInput => GasConverter.GasToGas(castInput.Temperature),
         nameof(Gas) when input is RankineDouble castInput => RankineConverter.RankineToGas(castInput.Temperature),
         nameof(Rankine) when input is CelsiusDouble castInput => CelsiusConverter.CelsiusToRankine(castInput.Temperature),
         nameof(Rankine) when input is FahrenheitDouble castInput => FahrenheitConverter.FahrenheitToRankine(castInput.Temperature),
         nameof(Rankine) when input is KelvinDouble castInput => KelvinConverter.KelvinToRankine(castInput.Temperature),
         nameof(Rankine) when input is GasDouble castInput => GasConverter.GasToRankine(castInput.Temperature),
         nameof(Rankine) when input is RankineDouble castInput => RankineConverter.RankineToRankine(castInput.Temperature),
         _ => throw new ArgumentException($"Invalid type: {typeof(TInput).Name}")
     });
 /// <summary>
 /// Converts the KelvinConverter <paramref name="input"/> to Celsius
 /// </summary>
 /// <param name="input"> The value to be converted. </param>
 /// <returns>
 /// The Celsius <see langword="float"/> result.
 /// </returns>
 public static float ToCelsius(this KelvinFloat input)
 {
     return((float)Math.Round(FloatParser(KelvinConverter.KelvinToCelsius(input.Temperature)), 2));
 }
示例#4
0
 /// <summary>
 /// Converts the KelvinConverter <paramref name="input"/> to Celsius
 /// </summary>
 /// <param name="input"> The value to be converted. </param>
 /// <exception cref="T:System.ArgumentOutOfRangeException"> If calculated value is beyond the limits of the type. </exception>
 /// <returns>
 /// The Celsius <see langword="int"/> result.
 /// </returns>
 public static int ToCelsius(this KelvinInt input)
 {
     return(IntParser(KelvinConverter.KelvinToCelsius(input.Temperature)));
 }
 /// <summary>
 /// Converts the KelvinConverter <paramref name="input"/> to Celsius
 /// </summary>
 /// <param name="input"> The value to be converted. </param>
 /// <returns>
 /// The Celsius <see langword="double"/> result.
 /// </returns>
 public static double ToCelsius(this KelvinDouble input)
 {
     return(KelvinConverter.KelvinToCelsius(input.Temperature));
 }