I have a byte[] in base64 and I would to save it in a mp3 file.
Can you开发者_运维知识库 help me please ?
Many thanks
It's not clear what you mean by "in base64" in this case. Please give more details.
When you've got a byte array, you'd usually just call:
File.WriteAllBytes(filename, data);
Now if you've got base64 encoded data, that's usually in the form of a string - so you'd use
byte[] binaryData = Convert.FromBase64String(base64String);
File.WriteAllBytes(filename, binaryData);
精彩评论