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

this() public method

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