91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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

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

0
新邵县| 镇雄县| 绍兴县| 临沭县| 玛沁县| 尚义县| 铜陵市| 东丰县| 绥芬河市| 嵊泗县| 西乌珠穆沁旗| 邢台县| 平谷区| 龙山县| 阜城县| 大足县| 抚宁县| 恩施市| 阿瓦提县| 安乡县| 安西县| 建湖县| 蒲城县| 鹿泉市| 安徽省| 江阴市| 会昌县| 万载县| 滁州市| 女性| 财经| 横山县| 那曲县| 扶风县| 拉萨市| 宁津县| 蓝田县| 太湖县| 嘉黎县| 池州市| 紫金县|