Hello, First time posting and new to C# so please forgive my noobishness. I have built a little page scraper to grab a list of television shows from and input string. Here is the class:

Code:
    public class Show
    {
        public ArrayList seasons;
        public string name;
        public Boolean loaded;
        public int showId;
        public Show(string n)
        {
...