-3
所以這是我的蹩腳的代碼如何從txt文件讀取二維數組? C#
class begin
{
public static string[] Reader()
{
string[] theMap = System.IO.File.ReadAllLines(@"C:\Users\Public\Console Slayer\Map\map.txt");
string[] Map = theMap.Clone() as string[];
return Map;
}
public static void Printer()
{
foreach (string line in Reader())
{
Console.WriteLine(line);
}
}
static void Main()
{
Reader();
Printer();
}
}
我想使地圖字符串轉換成二維數組的功能使用。 我是新來編程,我知道我的代碼是壞的。
太棒了!你的問題是什麼?說真的,我們沒有*遠程*足夠的信息來幫助你。 – BradleyDotNET 2014-09-02 18:00:05
如何將Map數組轉換爲二維數組 – nightxx 2014-09-02 18:00:58
您可以提供更多關於您要完成的內容的信息嗎?你的數據是什麼樣的,你爲什麼需要一個2D數組,它的結構應該是什麼樣子? – Jonesopolis 2014-09-02 18:01:10