45

当 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()); 
    } 
} 
4

3 回答 3

76

使用List.AddRange而不是 List.Add

于 2012-10-14T13:44:22.407 回答
24

使用List.AddRange而不是List.Add

改变

 wrd.Add(_lineParts.ToString());

wrd.AddRange(_lineParts);
于 2012-10-14T13:47:11.727 回答
5

您可以List.AddRange()在您使用的地方使用List.Add()

于 2012-10-14T13:45:36.433 回答