Fan.Sys.FanInt.toLocaleBytes C# (CSharp) Méthode

toLocaleBytes() static private méthode

static private toLocaleBytes ( long b ) : string
b long
Résultat string
        static string toLocaleBytes(long b)
        {
            if (b < KB)    return b + "B";
              if (b < 10*KB) return FanFloat.toLocale((double)b/KB, "#.#") + "KB";
              if (b < MB)    return Math.Round((double)b/KB) + "KB";
              if (b < 10*MB) return FanFloat.toLocale((double)b/MB, "#.#") + "MB";
              if (b < GB)    return Math.Round((double)b/MB) + "MB";
              if (b < 10*GB) return FanFloat.toLocale((double)b/GB, "#.#") + "GB";
              return Math.Round((double)b/GB) + "GB";
        }