BREAKING CHANGE: chore: remove byte helper

This commit is contained in:
Kyle Ratti 2024-05-03 17:09:21 -04:00
parent 5504a765dc
commit d2a5e2850b
No known key found for this signature in database
GPG Key ID: 4D429B6287C68DD9

View File

@ -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;
}