Beispiel #1
0
 public bool Contains(IssueHistory value)
 {
     // If value is not of type Comment, this will return false.
     return(List.Contains(value));
 }
Beispiel #2
0
 public void Remove(IssueHistory value)
 {
     List.Remove(value);
 }
Beispiel #3
0
 public int IndexOf(IssueHistory value)
 {
     return(List.IndexOf(value));
 }
Beispiel #4
0
 public void Insert(int index, IssueHistory value)
 {
     List.Insert(index, value);
 }
Beispiel #5
0
 public int Add(IssueHistory value)
 {
     return(List.Add(value));
 }