Frage

I cerated a asp.net user profile with 1 property List<string> Password it contain 24 passwords , now i want to delete 4 passwords from this property values, how can i do this?

War es hilfreich?

Lösung

To remove a range

Password.RemoveRange(index,count);

To remove a known index

Password.RemoveAt(index);

index is always zero based. All list of methods

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top