Compartilhar via


Método SqlCeParameterCollection.RemoveAt (Int32)

Remove o SqlCeParameter no índice especificado da coleção.

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (em System.Data.SqlServerCe.dll)

Sintaxe

'Declaração
Public Overrides Sub RemoveAt ( _
    index As Integer _
)
'Uso
Dim instance As SqlCeParameterCollection
Dim index As Integer

instance.RemoveAt(index)
public override void RemoveAt(
    int index
)
public:
virtual void RemoveAt(
    int index
) override
abstract RemoveAt : 
        index:int -> unit 
override RemoveAt : 
        index:int -> unit 
public override function RemoveAt(
    index : int
)

Parâmetros

  • index
    Tipo: System.Int32
    O índice com base zero do parâmetro a ser removido.

Implementa

IList.RemoveAt(Int32)

Exceções

Exceção Condição
IndexOutOfRangeException

O índice especificado não existe.

Exemplos

O exemplo a seguir remove o primeiro SqlCeParameter de uma SqlCeParameterCollection. Se o parâmetro existir, ele será removido. Este exemplo presume que um SqlCeCommand já foi criado.

' ...
' create SqlCeCommand cmd
' ...
If cmd.Parameters.Count > 0 Then
    cmd.Parameters.RemoveAt(0)
End If
// ...
// create SqlCeCommand cmd
// ...
if (cmd.Parameters.Count > 0)
{
    cmd.Parameters.RemoveAt(0);
}

Consulte também

Referência

SqlCeParameterCollection Classe

Sobrecarregado RemoveAt

Namespace System.Data.SqlServerCe