Example #1
0
 public static void SaveFile(String p_FilePath, ByteBuffe p_Buffe)
 {
     if (!String.IsNullOrEmpty(p_FilePath) && p_Buffe.Count > 0)
     {
         IsolatedStorageManager.CreateImageFile(p_FilePath, p_Buffe.ToArrary());
     }
 }