嗨,我是編程新手。我想讀取一個文本文件並採取值(string
s)並將string
的每個字符分別存儲在array
中。我使用了一個列表從文本文件中獲取值。我發現很難將它們移動到array
中,然後在我的程序中使用這些值。如果可能,請找到我的解決方案。提前感謝你。如何將文件從文件列表存儲到c中的變量#
public class file_IO
{
string[] letters = new string[] //I would like to store it in this variable
public void File_Reader()
{
string filepath = @"env.txt"; //Variable to hold string
List<string> file_lines = File.ReadAllLines(filepath).ToList();//returns array of strings into List
foreach (string line in file_lines)
{
}
}
}
首先聲明一個數組然後在你的'foreach'循環中加入數組 – WhatsThePoint
你想存儲每一行嗎?或整個文件作爲字符數組? –
@WhatsThePoint謝謝你的回覆。如何將列表中的值移動到數組中?我對此很新,不知道語法。 – Rahul