Czlovek.MongoDb 2.1.0-beta.73

This is a prerelease version of Czlovek.MongoDb.
dotnet add package Czlovek.MongoDb --version 2.1.0-beta.73
                    
NuGet\Install-Package Czlovek.MongoDb -Version 2.1.0-beta.73
                    
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="Czlovek.MongoDb" Version="2.1.0-beta.73" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Czlovek.MongoDb" Version="2.1.0-beta.73" />
                    
Directory.Packages.props
<PackageReference Include="Czlovek.MongoDb" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Czlovek.MongoDb --version 2.1.0-beta.73
                    
#r "nuget: Czlovek.MongoDb, 2.1.0-beta.73"
                    
#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.
#:package Czlovek.MongoDb@2.1.0-beta.73
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Czlovek.MongoDb&version=2.1.0-beta.73&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Czlovek.MongoDb&version=2.1.0-beta.73&prerelease
                    
Install as a Cake Tool

Base64 Encoding/Decoding Extensions

This C# class provides extensions to convert strings and byte arrays to and from Base64 encoding. Base64 encoding is a way to represent binary data in an ASCII string format, making it easier to transmit over text-based protocols such as HTTP.

Usage

Converting a string to Base64 encoded ASCII string
string input = "Hello, world!";
string base64AsciiString = input.ConvertToBase64AsciiString();
// base64AsciiString = "SGVsbG8sIHdvcmxkIQ=="
Converting a string to Base64 encoded UTF-8 string
string input = "こんにちは、世界!";
string base64Utf8String = input.ConvertToBase64Utf8String();
// base64Utf8String = "44GC44GE44GG44Gv44Gr44Gh44Gv44CB5LiW55WMhIS"
Converting a byte array to Base64 encoded string
byte[] input = new byte[] { 0x12, 0x34, 0x56, 0x78 };
string base64String = input.ConvertToBase64String();
// base64String = "EjRWdg=="
Converting a Base64 encoded ASCII string to string
string base64AsciiString = "SGVsbG8sIHdvcmxkIQ==";
string output = base64AsciiString.ConvertBase64ToAsciiString();
// output = "Hello, world!"
Converting a Base64 encoded UTF-8 string to string
string base64Utf8String = "44GC44GE44GG44Gv44Gr44Gh44Gv44CB5LiW55WMhIS";
string output = base64Utf8String.ConvertBase64ToUtf8String();
// output = "こんにちは、世界!"
Converting a Base64 encoded string to byte array
string base64String = "EjRWdg==";
byte[] output = base64String.ConvertBase64ToBytes();
// output = new byte[] { 0x12, 0x34, 0x56, 0x78 }
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.0-beta.73 138 11/6/2025
2.1.0-beta.72 130 11/6/2025
2.1.0-beta.71 137 11/4/2025
2.1.0-beta.70 132 11/4/2025
2.1.0-beta.69 136 11/4/2025
2.1.0-beta.68 142 11/4/2025
2.1.0-beta.67 142 11/2/2025
2.1.0-beta.66 134 11/2/2025
2.1.0-beta.65 74 11/1/2025
2.1.0-beta.64 74 11/1/2025
2.1.0-beta.63 77 11/1/2025
2.1.0-beta.62 69 11/1/2025
2.1.0-beta.61 141 10/12/2025
2.1.0-beta.59 150 8/13/2025
2.1.0-beta.58 130 8/13/2025
2.1.0-beta.57 133 8/13/2025
2.1.0-beta.56 125 8/12/2025
2.1.0-beta.55 123 8/12/2025
2.1.0-beta.54 132 8/10/2025
2.1.0-beta.53 123 8/10/2025
2.1.0-beta.52 125 8/10/2025
2.1.0-beta.51 97 8/9/2025
2.1.0-beta.50 98 8/9/2025
2.1.0-beta.49 96 8/9/2025
2.1.0-beta.48 100 8/9/2025
2.1.0-beta.47 107 8/9/2025
2.1.0-beta.46 144 7/29/2025
2.1.0-beta.45 99 7/29/2025
2.1.0-beta.44 98 7/29/2025
2.1.0-beta.43 148 7/5/2025
2.1.0-beta.42 132 6/23/2025
2.1.0-beta.41 93 6/6/2025
2.1.0-beta.40 76 6/6/2025
2.1.0-beta.38 158 6/3/2025
2.1.0-beta.37 134 5/27/2025
2.1.0-beta.36 71 5/10/2025
2.1.0-beta.35 58 5/10/2025
2.1.0-beta.34 61 5/10/2025
2.1.0-beta.33 207 4/10/2025
2.1.0-beta.32 149 4/9/2025
2.1.0-beta.31 143 4/9/2025
2.1.0-beta.30 137 4/9/2025
2.1.0-beta.29 140 4/9/2025
2.1.0-beta.28 181 3/11/2025
2.1.0-beta.27 163 3/9/2025
2.1.0-beta.26 114 3/8/2025
2.1.0-beta.25 128 3/8/2025
2.1.0-beta.24 206 3/6/2025
2.1.0-beta.23 188 3/4/2025
2.1.0-beta.22 190 3/4/2025
2.1.0-beta.21 110 2/23/2025
2.1.0-beta.20 76 2/22/2025
2.1.0-beta.19 67 2/22/2025
2.1.0-beta.18 78 2/22/2025
2.1.0-beta.17 74 2/22/2025
2.1.0-beta.16 76 2/22/2025
2.1.0-beta.15 71 2/22/2025
2.1.0-beta.14 79 2/22/2025
2.1.0-beta.13 79 2/22/2025
2.1.0-beta.12 84 2/22/2025
2.1.0-beta.11 103 2/21/2025
2.1.0-beta.10 87 2/20/2025
2.1.0-beta.9 83 1/20/2025
2.1.0-beta.8 80 1/20/2025
2.1.0-beta.7 77 1/20/2025
2.1.0-beta.6 70 1/20/2025
2.1.0-beta.5 82 1/19/2025
2.1.0-beta.4 69 1/19/2025
2.1.0-beta.3 71 1/19/2025