我有一個10×10的文本框(其中100) 我寫這篇文章的代碼寫入到文本文件:寫入文本文件不匹配
foreach (Control control in Panel1.Controls)
{
var textBox = control as TextBox;
if (textBox != null)
{
if (string.IsNullOrEmpty(textBox.Text)) // ignore this
{
textBox.Style["visibility"] = "hidden";
}
textBox.Enabled = false;
if (numberofCommas > 8)
{
stringWriter.Write(textBox.Text);
numberofCommas = 0;
}
else
{
stringWriter.Write("," + textBox.Text);
numberofCommas++;
recordsWritten++;
}
if (recordsWritten == 10)
{
stringWriter.WriteLine();
recordsWritten = 0;
}
else
{
}
從上面我想有10行在文本文件中有9個逗號,但是我在文本文件中有9行10個逗號,是我的代碼邏輯錯誤?因爲我一直在看它幾個小時,我仍然無法解決它。對不起,如果我的邏輯不好,我是編程新手。