Guest User

Untitled

a guest
Dec 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. using (System.IO.StreamWriter file =
  2. new System.IO.StreamWriter(@"/home/pi/Tosend.txt"))
  3. {
  4.  
  5. foreach (byte line in Start2)
  6. {
  7. file.Write(line.ToString("X"));
  8. }
  9.  
  10. foreach (byte line in MSG2)
  11. {
  12. file.Write(line.ToString("X"));
  13. }
  14.  
  15.  
  16. foreach (byte line in END2)
  17. {
  18. file.Write(line.ToString("X"));
  19. }
  20.  
  21.  
  22. }
  23.  
  24. 23033313933330
  25.  
  26. 031930
  27.  
  28. printf "x2x30....x30" > "test1.txt"
Add Comment
Please, Sign In to add comment