public bool Contains(AnnotationValue value)
 {
     return(this.Contains(value));
 }
 public int Add(AnnotationValue value)
 {
     return(this.Add(value));
 }
 public void Insert(int index, AnnotationValue value)
 {
     this.Insert(index, value);
 }
 public void Remove(AnnotationValue value)
 {
     this.Remove(value);
 }
 public int IndexOf(AnnotationValue value)
 {
     return(this.IndexOf(value));
 }