-1

作为我大学课程的一部分,我们必须使用 ArrayLists 来创建一个记录预订系统,我想包括一种搜索预订姓氏的方法,有没有办法在 C# 中做到这一点?ArrayList 包含变量“姓”,目前我有这个

private void search()
{
    string term;
    term = searchBox.Text;
    foreach (string surname in dataList)
        if (surname == term){

这就是我卡住的地方。任何帮助,将不胜感激!

4

2 回答 2

1

它更易于使用IndexOf并检查索引是否为负数:

int pos = dataList.IndexOf(surname);
if (pos >= 0) {
    // It's there - do whatever you need to do...
    ...
}
于 2013-01-07T17:15:48.670 回答
1
using System;
using System.Collections;


class Program
{
    static void Main(string[] args)
    {
        ArrayList datalist = new ArrayList 
            {
                "asd",
                "surname",
                "dfg"
            };
        Console.WriteLine(datalist.IndexOf("surname") != -1 ? "Found" : "Not found");
        Console.ReadKey(true);
    }
}
于 2013-01-07T17:17:15.300 回答