Esempio n. 1
0
 /// <summary>
 /// Inserts an code item at the specified index.
 /// </summary>
 ///
 /// <param name="index">
 /// The zero-based index at which item should be inserted.
 /// </param>
 ///
 /// <param name="item">
 /// The object to insert.
 /// </param>
 ///
 /// <exception cref="ArgumentOutOfRangeException">
 /// The <paramref name="index"/> parameter is out of range.
 /// </exception>
 ///
 public void Insert(int index, CodedValue item)
 {
     Codes.Insert(index, item);
 }