LumiSoft.Net.Mime.AddressList.Clear C# (CSharp) 메소드

Clear() 공개 메소드

Clears the collection of all addresses.
public Clear ( ) : void
리턴 void
        public void Clear()
        {
            foreach(Address address in m_pAddresses){
                address.Owner = null;
            }
            m_pAddresses.Clear();

            OnCollectionChanged();
        }