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