|
ByteExtensionsToBase64 Method |
Converts the byte sequence to a base64
Namespace: DrawerBackup.Native.ExtensionsAssembly: DrawerBackup.Native (in DrawerBackup.Native.dll) Version: 0.0.1.1 (0.0.1.1)
Syntaxpublic static string ToBase64(
this byte[] data
)
<ExtensionAttribute>
Public Shared Function ToBase64 (
data As Byte()
) As String
public:
[ExtensionAttribute]
static String^ ToBase64(
array<unsigned char>^ data
)
[<ExtensionAttribute>]
static member ToBase64 :
data : byte[] -> string
Parameters
- data
- Type: SystemByte
Return Value
Type:
StringUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . 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).
See Also