gpt4 book ai didi

c# - 将字符串数组 (string[]) 添加到 List c#

转载 作者:IT王子 更新时间:2023-10-29 04:11:56 28 4
gpt4 key购买 nike

当string[], _lineParts被添加到List中时,我在List中看到的是“System.String[]” 需要做什么才能在列表中看到实际的 string[] 值。

while (_aLine != null) 
{
//split the line read into parts delimited by commas
_lineParts = _aLine.Split(new char[] { ' ', '\u000A', ',', '.', ';', ':', '-', '_', '/' },
StringSplitOptions.RemoveEmptyEntries);
//keep things going by reading the next line
_aLine = sr.ReadLine();
//words = _lineParts;
if (_lineParts != null)
{
//_words.Add(_lineParts.ToString());
wrd.Add(_lineParts.ToString());
}
}

最佳答案

使用List.AddRange而不是 List.Add

关于c# - 将字符串数组 (string[]) 添加到 List<string> c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12882778/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com