コード例 #1
0
 public void AddComment(Comment NewComment)
 {
     Comments.Add(NewComment);
 }
コード例 #2
0
ファイル: UserOpinion.cs プロジェクト: Saroko-dnd/My_DZ
 public UserOpinion(Comment CommentForLikeOrDislike, User CurrentUser, bool LikeIt)
 {
     Like = LikeIt;
     Comment = CommentForLikeOrDislike;
     Author = CurrentUser;
 }