mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
8 lines
179 B
C#
8 lines
179 B
C#
#nullable disable
|
|
namespace NadekoBot.Services;
|
|
|
|
public static class StandardConversions
|
|
{
|
|
public static double CelsiusToFahrenheit(double cel)
|
|
=> (cel * 1.8f) + 32;
|
|
} |