string str = "aa"; ArrayList list = new ArrayList(); list.Add("bb"); list.Add("aa"); list.Add("cc"); if (list.IndexOf(str) == -1) { list.Add(str); }