OracleParameterCollection.RemoveAt Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes a specified OracleParameter object from the collection.
Overloads
RemoveAt(Int32) |
Removes the OracleParameter object at the specified index from the collection. |
RemoveAt(String) |
Removes the OracleParameter object with the specified name from the collection. |
RemoveAt(Int32)
Removes the OracleParameter object at the specified index from the collection.
public:
virtual void RemoveAt(int index);
public:
override void RemoveAt(int index);
public void RemoveAt (int index);
public override void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
Public Overrides Sub RemoveAt (index As Integer)
Parameters
- index
- Int32
The zero-based index of the OracleParameter object to remove.
Implements
Applies to
RemoveAt(String)
Removes the OracleParameter object with the specified name from the collection.
public:
virtual void RemoveAt(System::String ^ parameterName);
public:
override void RemoveAt(System::String ^ parameterName);
public void RemoveAt (string parameterName);
public override void RemoveAt (string parameterName);
abstract member RemoveAt : string -> unit
override this.RemoveAt : string -> unit
override this.RemoveAt : string -> unit
Public Sub RemoveAt (parameterName As String)
Public Overrides Sub RemoveAt (parameterName As String)
Parameters
- parameterName
- String
The name of the OracleParameter object to remove.