Method | Description | |
---|---|---|
Add ( |
Adds an instance of type Parameter to the end of this ParameterCollection.
|
|
AddRange ( |
Adds the elements of an array to the end of this ParameterCollection.
|
|
AddRange ( |
Adds the elements of another ParameterCollection to the end of this ParameterCollection.
|
|
Contains ( |
Determines whether a specfic Parameter value is in this ParameterCollection.
|
|
GetEnumerator ( ) : Enumerator |
Returns an enumerator that can iterate through the elements of this ParameterCollection.
|
|
IndexOf ( |
Return the zero-based index of the first occurrence of a specific value in this ParameterCollection
|
|
Insert ( int index, |
Inserts an element into the ParameterCollection at the specified index
|
|
ParameterCollection ( ) : System |
Initializes a new empty instance of the ParameterCollection class.
|
|
ParameterCollection ( |
Initializes a new instance of the ParameterCollection class, containing elements copied from an array.
|
|
ParameterCollection ( |
Initializes a new instance of the ParameterCollection class, containing elements copied from another instance of ParameterCollection
|
|
Remove ( |
Removes the first occurrence of a specific Parameter from this ParameterCollection.
|
|
this ( int index ) : |
Gets or sets the Parameter at the given index in this ParameterCollection.
|
public Add ( |
||
value | /// The Parameter to be added to the end of this ParameterCollection. /// | |
return | void |
public AddRange ( |
||
items | /// The array whose elements are to be added to the end of this ParameterCollection. /// | |
return | void |
public AddRange ( |
||
items | /// The ParameterCollection whose elements are to be added to the end of this ParameterCollection. /// | |
return | void |
public Contains ( |
||
value | /// The Parameter value to locate in this ParameterCollection. /// | |
return | bool |
public IndexOf ( |
||
value | /// The Parameter value to locate in the ParameterCollection. /// | |
return | int |
public Insert ( int index, |
||
index | int | /// The index at which the Parameter is to be inserted. /// |
value | /// The Parameter to insert. /// | |
return | void |
public ParameterCollection ( |
||
items | /// The array whose elements are to be added to the new ParameterCollection. /// | |
return | System |
public ParameterCollection ( |
||
items | /// The ParameterCollection whose elements are to be added to the new ParameterCollection. /// | |
return | System |
public Remove ( |
||
value | /// The Parameter value to remove from this ParameterCollection. /// | |
return | void |