gpt4 book ai didi

c# - 数组和文本文件

转载 作者:行者123 更新时间:2023-11-30 20:00:44 26 4
gpt4 key购买 nike

我想把一个有很多行的文本文件变成一个数组。例如,如果文本文件是:

Line 1

Line 2

Line 3

Line 4`

这会导致

string[] stringList = { "Line 1", "Line 2", "Line 3", "Line 4" };

我该怎么做?

我已经试过了:

string line;
string[] accountList;
using (StreamReader file = new StreamReader(accountFileLocation.Text))
{
while (line = file.ReadLine() != null)
{
stringList += line;
}
}

但是错误是:

Cannot implicitly convert type 'bool' to 'string'

Cannot convert type 'string' to 'string[]'

Cannot implicitly convert type 'string' to 'string[]'

最佳答案

只是使用

  string[] lines =  File.ReadAllLines(yourpathFile);  

关于c# - 数组和文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20318243/

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