// Token: 0x0600020C RID: 524 RVA: 0x00006944 File Offset: 0x00005944
        public override object Clone()
        {
            AnnotationValueCollection annotationValueCollection = (AnnotationValueCollection)base.Clone();

            annotationValueCollection.m_values = new ArrayList(this.m_values.Count);
            foreach (object obj in this.m_values)
            {
                AnnotationValue annotationValue = (AnnotationValue)obj;
                annotationValueCollection.m_values.Add(annotationValue.Clone());
            }
            return(annotationValueCollection);
        }
 // Token: 0x06000222 RID: 546 RVA: 0x00006B18 File Offset: 0x00005B18
 public int Add(AnnotationValue value)
 {
     return(this.Add(value));
 }
 // Token: 0x06000221 RID: 545 RVA: 0x00006B0F File Offset: 0x00005B0F
 public int IndexOf(AnnotationValue value)
 {
     return(this.IndexOf(value));
 }
 // Token: 0x06000220 RID: 544 RVA: 0x00006B06 File Offset: 0x00005B06
 public bool Contains(AnnotationValue value)
 {
     return(this.Contains(value));
 }
 // Token: 0x0600021F RID: 543 RVA: 0x00006AFD File Offset: 0x00005AFD
 public void Remove(AnnotationValue value)
 {
     this.Remove(value);
 }
 // Token: 0x0600021E RID: 542 RVA: 0x00006AF3 File Offset: 0x00005AF3
 public void Insert(int index, AnnotationValue value)
 {
     this.Insert(index, value);
 }
Beispiel #7
0
 /// <summary>
 /// Adds an item to the IList.
 /// </summary>
 /// <param name="value">The Object to add to the IList. </param>
 /// <returns>The position into which the new element was inserted.</returns>
 public int Add(AnnotationValue value)
 {
     return(Add((object)value));
 }
Beispiel #8
0
 /// <summary>
 /// Determines the index of a specific item in the IList.
 /// </summary>
 /// <param name="value">The Object to locate in the IList.</param>
 /// <returns>The index of value if found in the list; otherwise, -1.</returns>
 public int IndexOf(AnnotationValue value)
 {
     return(IndexOf((object)value));
 }
Beispiel #9
0
 /// <summary>
 /// Determines whether the IList contains a specific value.
 /// </summary>
 /// <param name="value">The Object to locate in the IList.</param>
 /// <returns>true if the Object is found in the IList; otherwise, false.</returns>
 public bool Contains(AnnotationValue value)
 {
     return(Contains((object)value));
 }
Beispiel #10
0
 /// <summary>
 /// Removes the first occurrence of a specific object from the IList.
 /// </summary>
 /// <param name="value">The Object to remove from the IList.</param>
 public void Remove(AnnotationValue value)
 {
     Remove((object)value);
 }
Beispiel #11
0
 /// <summary>
 /// Inserts an item to the IList at the specified position.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The Object to insert into the IList. </param>
 public void Insert(int index, AnnotationValue value)
 {
     Insert(index, (object)value);
 }