public void Add_URL(URL aURL) { _CatElements.Add(aURL); }
public void Find_URL(URL aURL) { _CatElements.Find(aURL.Equals); }
static void Main() { Category MyInterest = new Category(); MyInterest.set_CatName("first"); MyInterest.set_All("second", "second string", "Mimi", "6/11/11"); System.Console.WriteLine(MyInterest.get_CatCreation()); URL myURL = new URL(); MyInterest.Add_URL(myURL); MyInterest.Dump_URLs(); MyInterest.launcher(); MyInterest.launcher(); Console.ReadLine(); }