CppBase64 0.0.1

dotnet add package CppBase64 --version 0.0.1
NuGet\Install-Package CppBase64 -Version 0.0.1
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="CppBase64" Version="0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CppBase64 --version 0.0.1
#r "nuget: CppBase64, 0.0.1"
#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 CppBase64 as a Cake Addin
#addin nuget:?package=CppBase64&version=0.0.1

// Install CppBase64 as a Cake Tool
#tool nuget:?package=CppBase64&version=0.0.1

class Base64 { public: std::string Encode(char* Data, int DataByte); std::string Decode(const char* Data, int DataByte, int& OutByte); };

for example:

#include "base64.hpp" int main() { Base64 b64; std::cout << b64.Encode("hello", 5) << std::endl; getchar(); return 0; }

Product Compatible and additional computed target framework versions.
native native is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has 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.

Version Downloads Last updated
0.0.1 610 5/20/2020

Release of Base64 0.0.1 libraries.