IW1QLH

  • Increase font size
  • Default font size
  • Decrease font size

Create a string list

E-mail Print PDF
ASPX.CS C# - How to create a string list

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)
                    ...;
}