public Comment Add(Comment comment) { comment.ID = nextID++; comments[comment.ID] = comment; return(comment); }
public void AddCom(Comment c) => ComList.Add(c);
public bool TryGet(int id, out Comment comment) { return(comments.TryGetValue(id, out comment)); }