System.Data.ConstraintCollection.this C# (CSharp) Method

this() public method

Gets the from the collection at the specified index.
public this ( int index ) : Constraint
index int
return Constraint
        public Constraint this[int index]
        {
            get
            {
                if (index >= 0 && index < List.Count)
                {
                    return (Constraint)List[index];
                }
                throw ExceptionBuilder.ConstraintOutOfRange(index);
            }
        }

Same methods

ConstraintCollection::this ( string name ) : Constraint