mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
Global usings and file scoped namespaces
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
namespace NadekoBot.Services
|
||||
namespace NadekoBot.Services;
|
||||
|
||||
public static class StandardConversions
|
||||
{
|
||||
public static class StandardConversions
|
||||
public static double CelsiusToFahrenheit(double cel)
|
||||
{
|
||||
public static double CelsiusToFahrenheit(double cel)
|
||||
{
|
||||
return cel * 1.8f + 32;
|
||||
}
|
||||
return cel * 1.8f + 32;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user