예제 #1
0
 public void AddRange(TopicIdentify[] value)
 {
     for (int i = 0; (i < value.Length); i = (i + 1))
     {
         this.Add(value[i]);
     }
 }
예제 #2
0
 public void Remove(TopicIdentify value)
 {
     List.Remove(value);
 }
예제 #3
0
 public void Insert(int index, TopicIdentify value)
 {
     List.Insert(index, value);
 }
예제 #4
0
 public int IndexOf(TopicIdentify value)
 {
     return this.List.IndexOf(value);
 }
예제 #5
0
 public void CopyTo(TopicIdentify[] array, int index)
 {
     this.List.CopyTo(array, index);
 }
예제 #6
0
 public bool Contains(TopicIdentify value)
 {
     return this.List.Contains(value);
 }
예제 #7
0
 public int Add(TopicIdentify value)
 {
     return this.List.Add(value);
 }
예제 #8
0
 public TopicIdentifyCollection(TopicIdentify[] value)
 {
     this.AddRange(value);
 }