17 lines
324 B
C#
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;
|
|
}
|
|
}
|
|
}
|