Algo asi?
Se puede hacer igualmente con "substring"...
Código (csharp) [Seleccionar]
lista.Add("1.- uno");
lista.Add("2.- dos");
lista.Add("3.- tres");
lista.Add("4.- cuatro");
Código (csharp) [Seleccionar]
foreach (string verif in lista.ToArray())
{
if (verif.Contains("4.-"))this.Text = "esta";
else lista.Add("4.- valor nuevo");
}
Se puede hacer igualmente con "substring"...