Advertisement
Guest User

untitled.srt

a guest
Nov 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static void Main(string[] args) { List<string> list = new List<string>(); string line; while(!string.IsNullOrEmpty(line = Console.ReadLine())) list.Add(line); foreach (string s in args) list.Add(s); StringCollection paths = new StringCollection(); foreach (string s in list) { Console.Write(s); paths.Add( System.IO.Path.IsPathRooted(s) ?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement