Hd.QueryExtensions.SqlConstantCollection.this C# (CSharp) Method

this() public method

Gets or sets the SqlConstant at the given index in this SqlConstantCollection.
public this ( int index ) : SqlConstant
index int
return SqlConstant
		public virtual SqlConstant this[int index]
		{
			get { return (SqlConstant) List[index]; }
			set { List[index] = value; }
		}