21
.NET fornisce un modo semplice per convertire i byte in KB, MB, GB, ecc.?
Mi chiedo solo se .NET fornisce un modo pulito per farlo: int64 x = 1000000; string y = null; if (x / 1024 == 0) { y = x + " bytes"; } else if (x / (1024 * 1024) == 0) { y = string.Format("{0:n1} KB", x / 1024f); …