迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

在 C# 中获取列表长度

作者:迹忆客 最近更新:2024/01/03 浏览次数:

本教程将演示如何使用 count 函数获取 C# 列表的长度。

列表是一种指定类型的对象的集合,其值可以通过其索引访问。

List<T> myList = new List<T>();

只要你添加的值的类型与初始化期间定义的类型匹配,你就可以将任意数量的元素添加到列表中。

C# 列表有一个内置函数 Count,它返回列表中的元素数。

int list_count = myList.Count;

例子:

using System;
using System.Collections.Generic;

namespace ListCount_Example {
  class Program {
    static void Main(string[] args) {
      // Initializing the list of strings
      List<string> student_list = new List<string>();

      // Adding values to the list
      student_list.Add("Anna Bower");
      student_list.Add("Ian Mitchell");
      student_list.Add("Dorothy Newman");
      student_list.Add("Nathan Miller");
      student_list.Add("Andrew Dowd");
      student_list.Add("Gavin Davies");
      student_list.Add("Alexandra Berry");

      // Getting the count of items in the list and storing it in the student_count variable
      int student_count = student_list.Count;

      // Printing the result
      Console.WriteLine("Total Number of students: " + student_count.ToString());
    }
  }
}

上例中初始化了字符串列表,并添加了 7 条记录。添加记录后,使用 count 函数提取记录数并将其存储在一个整数值中,然后打印。

输出:

Total Number of students: 7

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

C# 从列表中删除元素

发布时间:2024/01/03 浏览次数:118 分类:编程语言

本文介绍如何从 C# 中的列表中删除元素的方法。它介绍了诸如 Remove(),RemoveAt()和 RemoveRange()之类的方法。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便