Class ByteExtensions
This is an extension implementation of the System.Byte structure using various methods already found in the Microsoft .NET Framework.
Inheritance
System.Object
ByteExtensions
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public static class ByteExtensions
Methods
| Improve this DocToBase64(Byte[])
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.
Declaration
public static string ToBase64(this byte[] value)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | value | An array of 8-bit unsigned integers. |
Returns
Type | Description |
---|---|
System.String | The string representation, in base 64, of the contents of |