溫馨提示×

c# arraylist能進行查找元素嗎

c#
小樊
81
2024-11-15 23:46:14
欄目: 編程語言

是的,C#中的ArrayList類可以進行元素查找。你可以使用IndexOf方法來查找特定元素在ArrayList中的索引位置。以下是一個示例:

using System;
using System.Collections.ArrayList;

class Program
{
    static void Main()
    {
        ArrayList myList = new ArrayList();
        myList.Add("Apple");
        myList.Add("Banana");
        myList.Add("Cherry");

        string itemToFind = "Banana";
        int index = myList.IndexOf(itemToFind);

        if (index != -1)
        {
            Console.WriteLine($"Element '{itemToFind}' found at index {index}.");
        }
        else
        {
            Console.WriteLine($"Element '{itemToFind}' not found.");
        }
    }
}

在這個示例中,我們創(chuàng)建了一個包含三個元素的ArrayList,然后使用IndexOf方法查找字符串"Banana"的索引位置。如果找到了該元素,IndexOf方法將返回其索引值,否則返回-1。

0