請幫忙。無法解決這個問題,因爲我缺乏編程知識。C#爲什麼不設置該變量?
public static void FileOutput(string path, bool rewrite, List<int> NumberOfWords)
{
StreamWriter OutPath;
try
{
OutPath = new StreamWriter(path, rewrite);
}
catch(IOException e)
{
Console.WriteLine(e.Message);
}
for(int i = 0; i < NumberOfWords; i++)
{
try
{
OutPath.Write(NumberOfWords[i]);
}
catch(IOException e)
{
Console.WriteLine(e.Message);
}
}
OutPath.Close();
}
截圖是不愉快:(如果你實際上可以在你的代碼粘貼這將是很好。 – miradulo
你可以粘貼在這裏格式化你的代碼,請刪除圖像,並嘗試與SO文本編輯器打 – jean
你在問什麼?需要更多細節 – tdbeckett