MiniUtilAsBase64 Method
Converts the byte array to an base64 string.
Namespace: Karamba.UtilitiesAssembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
public static string AsBase64(
this byte[] bytes
)
<ExtensionAttribute>
Public Shared Function AsBase64 (
bytes As Byte()
) As String
public:
[ExtensionAttribute]
static String^ AsBase64(
array<unsigned char>^ bytes
)
[<ExtensionAttribute>]
static member AsBase64 :
bytes : byte[] -> string
- bytes Byte
- yeah. the input.
Stringbase64 string.In Visual Basic and C#, you can call this method as an instance method on any object of type
Byte. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).