Files
nadekobot/NadekoBot.Core/Services/StandardConversions.cs
2021-09-06 21:29:22 +02:00

11 lines
214 B
C#

namespace NadekoBot.Core.Services
{
public static class StandardConversions
{
public static double CelsiusToFahrenheit(double cel)
{
return cel * 1.8f + 32;
}
}
}