Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DlaDamiana
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. String path = @"Nazwa sciezki";
  10. Console.WriteLine("Hello World!");
  11. string[] text = System.IO.File.ReadAllLines(path);
  12. String[] newNumbers= { };
  13. for(int i = 0; i < text.Length; i++) {
  14. text[i] += " = "+Convert.ToInt32(text[i], 2).ToString();
  15. }
  16. System.IO.File.WriteAllLines(path,text);
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement