BF2Statistics.IntExtensions.ToFileSize C# (CSharp) Method

ToFileSize() public static method

Converts this int value to a file size
public static ToFileSize ( this l ) : string
l this
return string
        public static string ToFileSize(this int l)
        {
            return String.Format(new FileSizeFormatProvider(), "{0:fs}", l);
        }