Exemplo n.º 1
0
        public void GetComments(string Headline, string Poster, out List <string> CommentPoster, out List <string> Date, out List <string> Time, out List <string> Content)
        {
            Forum   f   = new Forum();
            Comment c   = new Comment();
            Account a   = new Account();
            int     PID = a.AccountGetID(Poster);
            int     FID = f.ForumGetID(Headline, PID);

            c.CommentGetForForum(FID, out CommentPoster, out Date, out Time, out Content);
            int x = 0;

            x++;
        }