SG.Utilities.BaseConverter
1.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package SG.Utilities.BaseConverter --version 1.0.0
NuGet\Install-Package SG.Utilities.BaseConverter -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SG.Utilities.BaseConverter" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SG.Utilities.BaseConverter --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SG.Utilities.BaseConverter, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SG.Utilities.BaseConverter as a Cake Addin #addin nuget:?package=SG.Utilities.BaseConverter&version=1.0.0 // Install SG.Utilities.BaseConverter as a Cake Tool #tool nuget:?package=SG.Utilities.BaseConverter&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SG.Utilities.BaseConverter
Common usage
Pass desired alphabet as a string with unique characters or use BaseAlphabet class constants
using SG.Utilities;
IBaseConverter customBase12Converter = new BaseConverter("Unique_chars");
var inBase12 = customBase12Converter.ConvertFromDec(12345); // "cnha"
var fromBase12 = customBase12Converter.ConvertToDec(inBase12); // 12345
IBaseConverter readableUrlConverter = new BaseConverter(BaseAlphabet.Base58);
// IBaseConverter readableUrlConverter = new Base58Converter();
var inBase58 = readableUrlConverter.ConvertFromDec(12345); // "4fr"
var fromBase58 = readableUrlConverter.ConvertToDec(inBase58); // 12345
Base2, Base8 and Base16
For this cases you don't need this library as System.Convert class do it's job perfectly. Nevertheless, there is wrapper classes Base2Converter, Base8Converter, Base16Converter that implements IBaseConverter and pass execution to System.Convert
using SG.Utilities;
IBaseConverter converter = new Base2Converter(); // System.Convert will be used
var inBase2 = converter.ConvertFromDec(12345); // "11000000111001"
var fromBase2 = converter.ConvertToDec(inBase2); // 12345
License
MIT
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.