コード例 #1
0
ファイル: 标志图片.cs プロジェクト: phiree/llliiii
 /// <summary>
 /// Remove an existing 评论 from the collection
 /// </summary>
 /// <pdGenerated>Default Remove</pdGenerated>
 public void Remove评论(评论 old评论)
 {
     if (old评论 == null)
      return;
       if (this.评论 != null)
      if (this.评论.Contains(old评论))
         this.评论.Remove(old评论);
 }
コード例 #2
0
ファイル: 标志图片.cs プロジェクト: phiree/llliiii
 /// <summary>
 /// Add a new 评论 in the collection
 /// </summary>
 /// <pdGenerated>Default Add</pdGenerated>
 public void Add评论(评论 new评论)
 {
     if (new评论 == null)
      return;
       if (this.评论 == null)
      this.评论 = new System.Collections.Generic.List<评论>();
       if (!this.评论.Contains(new评论))
      this.评论.Add(new评论);
 }