A nuget package used for encoding and decoding messages
$ dotnet add package MessageEncoder![]()
A nuget package used for encoding and decoding strings.
stable release version:
C#, .Net6.0, .NetStandard2.1,
First, install NuGet. Then, install MessageEncoder from the package manager console:
NuGet\Install-Package MessageEncoder -Version 1.0.2
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.
Or from the .NET CLI as:
dotnet add package MessageEncoder --version 1.0.2
Finally, import into the file:
using MessageEncoder;
Encoder.DecodeMessage(encodedMessage: string);
| Parameters | Type | Description |
|---|---|---|
encodedMessage | string | Required. string to be decoded |
| Type |
|---|
string |
Excel.EncodeMessage(message: string);
| Parameters | Type | Description |
|---|---|---|
message | string | Required. string to be encoded |
| Type |
|---|
string |
Maintainers:
Contributions are always welcome!
See contributing.md for ways to get started.
Please adhere to this project's code of conduct.