'Declaration Public Function DecodeBase64( _ ByVal input As System.String _ ) As System.Byte()
'Usage Dim instance As Encryption Dim input As System.String Dim value() As System.Byte value = instance.DecodeBase64(input)
public System.byte[] DecodeBase64( System.string input )
public function DecodeBase64( input: System.String ): System.array of Byte;
public function DecodeBase64( input : System.String ) : System.byte[];
public: System.byte[]* DecodeBase64( System.string* input )
public: System.array<byte>^ DecodeBase64( System.String^ input )
Parameters
- input
- The string to decode
Return Value
The decoded bytes OR null on error