Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. const string blobA = @"Publico8BEF883850D70BDB2729D174CC6B3DB0blob";
  2. const string blobB = @"Publico34C99D38A49BD6895156287980C6A4AFblob";
  3. const string blobC = @"Publico2914FDF6E301A0F76DB8DE4CEEE31E9Fblob";
  4. const string caminhoDestino = @"C:devarquivoTeste.webm";
  5.  
  6. byte[] fileA = File.ReadAllBytes(blobA);
  7. byte[] fileB = File.ReadAllBytes(blobB);
  8. byte[] fileC = File.ReadAllBytes(blobC);
  9.  
  10. List<byte> fileComplete = new List<byte>();
  11. fileComplete.AddRange(fileA);
  12. fileComplete.AddRange(fileB);
  13. fileComplete.AddRange(fileC);
  14.  
  15. File.WriteAllBytes(path, fileComplete.ToArray());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement