NadekoBot/NadekoBot.Core/Services/StandardConversions.cs
2017-10-19 08:11:47 +02:00

17 lines
324 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NadekoBot.Core.Services
{
public class StandardConversions
{
public static double CelsiusToFahrenheit(double cel)
{
return cel * 1.8f + 32;
}
}
}