using System.Collections.Generic;
public static void Main()
using (WebClient client = new WebClient())
string value = client.DownloadString ("http://forever.codeforamerica.org/fellowship-2015-tech-interview/Violations-2012.csv");
Console.WriteLine("--- WebClient result ---");
Console.WriteLine(value.Length);
Console.WriteLine(value);
List<string> result = new List<string>(value.Split(','));
for (int i = 0; i <= 5; i++)
Console.WriteLine(result[i]);