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

Insert() public method

Inserts an element into the SqlConstantCollection at the specified index
public Insert ( int index, SqlConstant value ) : void
index int /// The index at which the SqlConstant is to be inserted. ///
value SqlConstant /// The SqlConstant to insert. ///
return void
		public virtual void Insert(int index, SqlConstant value)
		{
			List.Insert(index, value);
		}