计算字符串数组c#中的元素数

本文关键字:元素 字符串 数组 计算 | 更新日期: 2023-09-27 18:00:01

我正在将文件中的数据读入列表中。一旦我读取了数据,我想拆分每个字符串,并显示拆分字符串的长度。我试过绳子。长度和字符串。数数,但什么都不管用。如何查找拆分字符串中的元素数?

以下是相关代码的部分:

string fileread = openFileDialog1.Filename; //Opens file from computer
lines = System.IO.File.ReadAllLines(fileread);
foreach (string line in lines)
{
    string[] Data_array = line.Split(',');
    List<string> Data_list = new List<string>();
    Data_list.Add(line);
    lbl_datacolumns.Text = Data_array.Count;//should show number of elements in Data_array
}

错误为:"无法将方法组'Count;转换为非委托类型'string'

计算字符串数组c#中的元素数

使用Length属性:

lbl_datacolumns.Text = Data_array.Length.ToString();

https://msdn.microsoft.com/en-us/library/system.array(v=vs.110).aspx

dotnetfiddle:https://dotnetfiddle.net/5m6Wk8