using System.Collections.Generic;
public partial class Page1 : System.Web.UI.Page
{
List<string> customerList = new List<string>();
customerList .Add("Roby");
...
if (customerList .FindIndex(delegate(string customer) { return customer== "Mary"; }) == -1)
...;
}
| < Prev | Next > |
|---|





