Exemplo n.º 1
0
        public virtual bool IsContain(Post p)
        {
            bool found = false;

            for (int i = 0; i < SubForum.Count && !found; i++)
            {
                found = SubForum.ElementAt(i).IsContain(p);
            }
            return(found);
        }
Exemplo n.º 2
0
 public virtual SubForum GetSubForumByName(String name)
 {
     for (int i = 0; i < SubForum.Count; i++)
     {
         if (SubForum.ElementAt(i).Name.Equals(name))
         {
             return(SubForum.ElementAt(i));
         }
     }
     return(null);
 }