Method | Description | |
---|---|---|
Add ( |
Adds an instance of type SqlConstant to the end of this SqlConstantCollection.
|
|
Add ( object val ) : void |
Adds a value This method automatically determins the type of the value and creates the appropriate SqlConstant object. |
|
AddRange ( |
Adds the elements of an array to the end of this SqlConstantCollection.
|
|
AddRange ( |
Adds the elements of another SqlConstantCollection to the end of this SqlConstantCollection.
|
|
Contains ( |
Determines whether a specfic SqlConstant value is in this SqlConstantCollection.
|
|
FromList ( IList values ) : |
Creates a SqlConstantCollection from a list of values. The type of SqlConstant items in the collection is determined automatically. See Add method for more info. |
|
GetEnumerator ( ) : |
Returns an enumerator that can iterate through the elements of this SqlConstantCollection.
|
|
IndexOf ( |
Return the zero-based index of the first occurrence of a specific value in this SqlConstantCollection
|
|
Insert ( int index, |
Inserts an element into the SqlConstantCollection at the specified index
|
|
Remove ( |
Removes the first occurrence of a specific SqlConstant from this SqlConstantCollection.
|
|
SqlConstantCollection ( ) : System |
Initializes a new empty instance of the SqlConstantCollection class.
|
|
SqlConstantCollection ( |
Initializes a new instance of the SqlConstantCollection class, containing elements copied from an array.
|
|
SqlConstantCollection ( |
Initializes a new instance of the SqlConstantCollection class, containing elements copied from another instance of SqlConstantCollection
|
|
SqlConstantCollection ( int capacity ) : System |
Initializes a new empty instance of the SqlConstantCollection class with the specified initial capacity
|
|
this ( int index ) : |
Gets or sets the SqlConstant at the given index in this SqlConstantCollection.
|
public Add ( |
||
value | /// The SqlConstant to be added to the end of this SqlConstantCollection. /// | |
return | void |
public Add ( object val ) : void | ||
val | object | The value which is to be added |
return | void |
public AddRange ( |
||
items | /// The array whose elements are to be added to the end of this SqlConstantCollection. /// | |
return | void |
public AddRange ( |
||
items | /// The SqlConstantCollection whose elements are to be added to the end of this SqlConstantCollection. /// | |
return | void |
public Contains ( |
||
value | /// The SqlConstant value to locate in this SqlConstantCollection. /// | |
return | bool |
public static FromList ( IList values ) : |
||
values | IList | |
return |
public GetEnumerator ( ) : |
||
return |
public IndexOf ( |
||
value | /// The SqlConstant value to locate in the SqlConstantCollection. /// | |
return | int |
public Insert ( int index, |
||
index | int | /// The index at which the SqlConstant is to be inserted. /// |
value | /// The SqlConstant to insert. /// | |
return | void |
public Remove ( |
||
value | /// The SqlConstant value to remove from this SqlConstantCollection. /// | |
return | void |
public SqlConstantCollection ( |
||
items | /// The array whose elements are to be added to the new SqlConstantCollection. /// | |
return | System |
public SqlConstantCollection ( |
||
items | /// The SqlConstantCollection whose elements are to be added to the new SqlConstantCollection. /// | |
return | System |
public SqlConstantCollection ( int capacity ) : System | ||
capacity | int | |
return | System |