/// <summary> /// Removes a code item at the specified index. /// </summary> /// /// <param name="index"> /// The zero-based index of the item to remove. /// </param> /// /// <exception cref="ArgumentOutOfRangeException"> /// The <paramref name="index"/> parameter is out of range. /// </exception> /// public void RemoveAt(int index) { Codes.RemoveAt(index); }