An even better way (so that you don't have to have two lines that convert the same object off the hash table) would be to add a smarter constructor to your class, then call then when you create the object.
First add this constructor to your container class:
public container(string url, bool parsed){
this.URL = url;
this.PARSED = parsed;
}
Then you can create a new instance and add it to the hash table like this:
t1.Add(1,new container("www.somewhere.com", true));
This will save you a lot of lines when you get into creating more instances.
-
Peter