orange313

Code:
using System;
public static void Main(string[] args)
{
    if(args.Length >= 1){
    System.IO.FileInfo f = new FileInfo(args[0]);
    if(f.Exists){
        string name = f.Name;
        Console.WriteLine($"Why are you here {name ?? "No one"}?");
        List<string> yourinsides = new List<string>();
        string curline = null;
        System.IO.StreamReader r = new System.IO.StreamReader(f.FullName);
        while((curline = r.ReadLine()) != null)
        {yourinsides.Add(curline);}
    }
    }
}
Location
somewhere
Occupation
something

Signature

Someone thats obsessed with KitPvP