10 lines
188 B
C#
10 lines
188 B
C#
|
namespace Base.Helper
|
|||
|
{
|
|||
|
public static class NetHelper
|
|||
|
{
|
|||
|
public static float BytesToMB(long bytes)
|
|||
|
{
|
|||
|
return bytes / (1024f * 1024f);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|