Currently I have this code:
public static class SizeUnit
{
public static string FileSizeToString(long size)
{
double FileSize = size;
string[] format = new string[] { "{0} bytes", "{0} KB", "{0} MB", "{0} GB", "{0} TB" };
int i = 0;
while (i < format.Length && FileSize >= 1024)
{
FileSize = (int)(100 * FileSize / 1024) / 100.0;
i++;
}
return string.Format(format[i], FileSize);
}
}
The problem is I want it to display the size in this format with max 3 numbers!
3.90 MB | 322 KB | 4.33 KB | 300 Bytes | 0 Bytes | 3 MB | 12.5 MB | 300 MB