예제 #1
0
 public bool Contains(ChartItem value)
 {
     return(List.Contains(value));
 }
예제 #2
0
 public int Add(ChartItem value)
 {
     return(List.Add(value));
 }
예제 #3
0
 public int IndexOf(ChartItem value)
 {
     return(List.IndexOf(value));
 }
예제 #4
0
 public void Remove(ChartItem value)
 {
     List.Remove(value);
 }