public void AddComment(Comment comment) { Comments.TryAdd(comment); NewCommentReceived?.Invoke(this, comment); }
protected virtual void OnNewCommentReceived(Comment c) => NewCommentReceived?.Invoke(this, new NewCommentReceivedEventArgs { Comment = c });