HeapProfiler.MainWindow.FormatSizeBytes C# (CSharp) Method

FormatSizeBytes() public static method

public static FormatSizeBytes ( long bytes ) : string
bytes long
return string
        public static string FormatSizeBytes(long bytes)
        {
            return FileSize.Format(bytes);
        }
MainWindow