public bool Contains(IssueComment value)
 {
     // If value is not of type Comment, this will return false.
     return(List.Contains(value));
 }
 public void Remove(IssueComment value)
 {
     List.Remove(value);
 }
 public int IndexOf(IssueComment value)
 {
     return(List.IndexOf(value));
 }
 public void Insert(int index, IssueComment value)
 {
     List.Insert(index, value);
 }
 public int Add(IssueComment value)
 {
     return(List.Add(value));
 }