CSharp examples for System:Byte Array
Save byte array to a file
using System.IO;/* w ww . j a v a 2 s.c o m*/ using System.Text; public class Main{ public static void Save(this byte[] bytes, string savePath) { File.WriteAllBytes(savePath, bytes); //ToStream(bytes).Save(savePath); } }