Org.Mentalis.Security.Certificates.DistinguishedNameList.RemoveAt C# (CSharp) Method

RemoveAt() public method

Removes the element at the specified index of the DistinguishedNameList.
is less than zero -or- is greater than . The DistinguishedNameList is read-only -or- the DistinguishedNameList has a fixed size.
public RemoveAt ( int index ) : void
index int The zero-based index of the element to remove.
return void
		public void RemoveAt(int index) {
			m_List.RemoveAt(index);
		}
		/// <summary>