IList<TValue>.remove_if(UnaryDelegate<TValue,Boolean>) Método

Definición

Quita los elementos del contenedor que pasan una prueba especificada.

public:
 void remove_if(Microsoft::VisualC::StlClr::UnaryDelegate<TValue, bool> ^ _Pred);
public void remove_if (Microsoft.VisualC.StlClr.UnaryDelegate<TValue,bool> _Pred);
abstract member remove_if : Microsoft.VisualC.StlClr.UnaryDelegate<'Value, bool> -> unit
Public Sub remove_if (_Pred As UnaryDelegate(Of TValue, Boolean))

Parámetros

_Pred
UnaryDelegate<TValue,Boolean>

Prueba de tipo booleano que determina los elementos que se van a quitar.

Comentarios

Para obtener más información, vea list::remove_if (STL/CLR) .

Se aplica a