From d2a5e2850b91a3d74255c8b62692cbf0a675563e Mon Sep 17 00:00:00 2001 From: Kyle Ratti Date: Fri, 3 May 2024 17:09:21 -0400 Subject: [PATCH] BREAKING CHANGE: chore: remove byte helper --- Base/ByteHelper.cs | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Base/ByteHelper.cs diff --git a/Base/ByteHelper.cs b/Base/ByteHelper.cs deleted file mode 100644 index a4ef8d4..0000000 --- a/Base/ByteHelper.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace FruityFoundation.Base; - -public static class ByteHelper -{ - public static long FromKilobytes(long kilobytes) => - kilobytes * 1024; - - public static long FromMegabytes(long megabytes) => - megabytes * 1024 * 1024; - - public static long FromGigabytes(long gigabytes) => - gigabytes * 1024 * 1024 * 1024; -} \ No newline at end of file