Decodes a string containing BASE64 characters.

Namespace: vCards
Assembly: ICalVCard (in ICalVCard.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static byte[] DecodeBase64(
	string value
)
Visual Basic
Public Shared Function DecodeBase64 ( _
	value As String _
) As Byte()
Visual C++
public:
static array<unsigned char>^ DecodeBase64(
	String^ value
)

Parameters

value
Type: System..::..String
A string containing data that has been encoded with the BASE64 format.

Return Value

The decoded data as a byte array.

See Also