예제 #1
0
파일: Comment.cs 프로젝트: didimitrov/Algo
 public void RemoveComment(Comment comment)
 {
     if (this._comments.Contains(comment))
     {
         _comments.Remove(comment);
     }
 }
예제 #2
0
파일: Comment.cs 프로젝트: didimitrov/Algo
 public void AddComment(Comment comment)
 {
     if (!this.Comments.Contains(comment))
     {
         this._comments.Add(comment);
     }
 }