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

this() public method

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