//Microsoft Public License (Ms-PL)
//http://c4fdevkit.codeplex.com/license
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace C4F.DevKit.WebServices
{
///
/// Provides useful methods like conversion methods.
///
public static class Utility
{
///
/// The Method converts the temperature in Celcius to Fahrenheit
///
/// Temperature in Celcius
/// Temperature in Fahrenheit
public static double CelciusToFahrenheit(double temperature)
{
return (9.0 / 5.0) * temperature + 32;
}
}
}