LumiSoft.Net.Mime.AddressList.Insert C# (CSharp) Method

Insert() public method

Inserts a new address into the collection at the specified location.
public Insert ( int index, Address address ) : void
index int The location in the collection where you want to add the address.
address Address Address to add.
return void
        public void Insert(int index,Address address)
        {
            address.Owner = this;
            m_pAddresses.Insert(index,address);

            OnCollectionChanged();
        }