Builds a friendly representation of a specified byte size value, after converting it to the best matching unit (bytes, KB, MB, GB, etc.). Has various options to control the format of the outputted string. CodeBits are useful code blocks that can included in your C# projects through NuGet. Each code bit is a single source file that gets added to a CodeBits folder in your project when you import it. Project repository: https://github.com/JeevanJames/CodeBits Documentation: https://github.com/JeevanJames/CodeBits/wiki/ByteSizeFriendlyName Source code: https://github.com/JeevanJames/CodeBits/blob/master/src/CodeBits/ByteSizeFriendlyName.cs
$ dotnet add package CodeBits.ByteSizeFriendlyNameCode Bits are a set of useful code blocks that can be included in your C# projects through NuGet. Each code bit is a single source file that gets added to a CodeBits folder in your project when you import it.
Code Bits does not add assemblies to your project.
You can do a search for 'CodeBits' on NuGet.org to view the list of available Code Bits packages.
| Name | Compatibility | Description |
|---|---|---|
| ByteArrayHelper | .NET Framework 3.5 and higher | Set of utility extensions for byte arrays. |
| ByteSizeFriendlyName | .NET Framework 3.5 and higher | Builds a friendly string representation of a specified byte size value, after converting it to the best matching unit (bytes, KB, MB, GB, etc.). |
| EnumIterator | .NET Framework 3.5 and higher | Provides an iterator for traversing through the values of an enum type. |
| IniFile | .NET Framework 3.5 and higher | Class to read and modify .INI files. |
| PasswordGenerator | .NET Framework 3.5 and higher | Generates a random password. |
| SaltedHash | .NET Framework 3.5 and higher | A helper class to generate and validate salted hashes. |
| ShortGuid |
| .NetStandard 2.1 and higher |
| Shorter, URL-friendly and readable GUID. |
| Name | Description |
|---|---|
| OrderedCollection<T> | An automatically sorted collection that has options to allow/disallow duplicate items and optionally sort in reverse order. |
| OrderedObservableCollection<T> | An automatically sorted observable collection that has options to allow/disallow duplicate items and optionally sort in reverse order. |
| Name | Description |
|---|---|
| WindowsServiceRunner | Helper class to execute a Windows Service project either as a Console Application or a Windows Service, depending on the project type. |