Decoding of base64 file

Hi,

Hope the following helps you.

byteArray = Convert.FromBase64String(b64String)

Then

 System.IO.File.WriteAllBytes(filename,byteArray)

Regards,

1 Like