Exemplo n.º 1
0
 /// <summary>
 /// Searches for the specified Z00_BURO_UR and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(Z00_BURO_UR value)
 {
     return(List.IndexOf(value));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(Z00_BURO_UR value)
 {
     return(List.Contains(value));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Adds a Z00_BURO_UR to the end of the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to be added to the end of the collection.</param>
 /// <returns>The index of the newZ00_BURO_UR.</returns>
 public int Add(Z00_BURO_UR value)
 {
     return(List.Add(value));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Inserts a Z00_BURO_UR into the collection at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The Z00_BURO_UR to insert.</param>
 public void Insert(int index, Z00_BURO_UR value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Copies the contents of the Z00_BURO_URTable to the specified one-dimensional array starting at the specified index in the target array.
 /// </summary>
 /// <param name="array">The one-dimensional destination array.</param>           
 /// <param name="index">The zero-based index in array at which copying begins.</param>           
 public void CopyTo(Z00_BURO_UR[] array, int index)
 {
     List.CopyTo(array, index);
 }
Exemplo n.º 6
0
 /// <summary>
 /// Removes the first occurrence of the specified Z00_BURO_UR from the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to remove from the collection.</param>
 public void Remove(Z00_BURO_UR value)
 {
     List.Remove(value);
 }
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(Z00_BURO_UR value)
 {
     return List.Contains(value);
 }
 /// <summary>
 /// Adds a Z00_BURO_UR to the end of the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to be added to the end of the collection.</param>
 /// <returns>The index of the newZ00_BURO_UR.</returns>
 public int Add(Z00_BURO_UR value)
 {
     return List.Add(value);
 }
 /// <summary>
 /// Removes the first occurrence of the specified Z00_BURO_UR from the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to remove from the collection.</param>
 public void Remove(Z00_BURO_UR value)
 {
     List.Remove(value);
 }
 /// <summary>
 /// Inserts a Z00_BURO_UR into the collection at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The Z00_BURO_UR to insert.</param>
 public void Insert(int index, Z00_BURO_UR value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Searches for the specified Z00_BURO_UR and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The Z00_BURO_UR to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(Z00_BURO_UR value)
 {
     return List.IndexOf(value);
 }