NadekoBot/NadekoBot.Core/Services/StandardConversions.cs

17 lines
324 B
C#
Raw Normal View History

2017-10-19 06:11:47 +00:00
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;
}
}
}