Ejemplo n.º 1
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(TsCHdaAnnotationValue value)
 {
     return(Add((object)value));
 }
Ejemplo n.º 2
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(TsCHdaAnnotationValue value)
 {
     return(IndexOf((object)value));
 }
Ejemplo n.º 3
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(TsCHdaAnnotationValue value)
 {
     Remove((object)value);
 }
Ejemplo n.º 4
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(TsCHdaAnnotationValue value)
 {
     return(Contains((object)value));
 }
Ejemplo n.º 5
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, TsCHdaAnnotationValue value)
 {
     Insert(index, (object)value);
 }