Formats the amount of bytes to get a human-readable data size in bytes with abbreviation. Eg. 32 kB [Deprecated in v1.9] The bytes. The formatted amount of bytes.
(int bytes)
| 151 | /// <param name="bytes">The bytes.</param> |
| 152 | /// <returns>The formatted amount of bytes.</returns> |
| 153 | [Obsolete("Use FormatBytesCount with ulong instead")] |
| 154 | public static string FormatBytesCount(int bytes) |
| 155 | { |
| 156 | return FormatBytesCount((ulong)bytes); |
| 157 | } |
| 158 | |
| 159 | /// <summary> |
| 160 | /// Formats the amount of bytes to get a human-readable data size in bytes with abbreviation. Eg. 32 kB |
no test coverage detected