CmisSync.Lib.Utils.FormatBandwidth C# (CSharp) Метод

FormatBandwidth() публичный статический Метод

Formats the bandwidth in typical 10 based calculation
public static FormatBandwidth ( long bitsPerSecond ) : string
bitsPerSecond long /// Bits per second. ///
Результат string
        public static string FormatBandwidth(long bitsPerSecond)
        {
            return FormatBandwidth((double) bitsPerSecond);
        }

Same methods

Utils::FormatBandwidth ( double bitsPerSecond ) : string