Microsoft.Xades.CommitmentTypeQualifierCollection.this C# (CSharp) Method

this() public method

New typed indexer for the collection
public this ( int index ) : CommitmentTypeQualifier
index int Index of the object to retrieve from collection
return CommitmentTypeQualifier
		public new CommitmentTypeQualifier this[int index]
		{
			get
			{
				return (CommitmentTypeQualifier)base[index];
			}
			set
			{
				base[index] = value;
			}
		}
CommitmentTypeQualifierCollection