Пример #1
0
        private CommentCollection ReorderComments(CommentCollection _comments)
        {
            CommentCollection tempCol = new CommentCollection(_comments);

            tempCol.Sort(new CommentSorter());
            return(tempCol);
        }
 private CommentCollection ReorderComments(CommentCollection _comments)
 {
     CommentCollection tempCol = new CommentCollection( _comments );
     tempCol.Sort( new CommentSorter() );
     return tempCol;
 }