所以我有一个我正在尝试实现的通用号码检查:
public static bool isNumberValid(string Number)
{
}
我想读取文本文件的内容(仅包含数字)并检查每一行的数字并使用isNumberValid
. 然后我想将结果输出到一个新的文本文件,我做到了这一点:
private void button2_Click(object sender, EventArgs e)
{
int size = -1;
DialogResult result = openFileDialog1.ShowDialog(); // Show the dialog.
if (result == DialogResult.OK) // Test result.
{
string file = openFileDialog1.FileName;
try
{
string text = File.ReadAllText(file);
size = text.Length;
using (StringReader reader = new StringReader(text))
{
foreach (int number in text)
{
// check against isNumberValid
// write the results to a new textfile
}
}
}
catch (IOException)
{
}
}
}
如果有人可以提供帮助,有点卡在这里?
文本文件在列表中包含几个数字:
4564
4565
4455
等等
我要编写的新文本文件只是末尾附加了 true 或 false 的数字:
第4564章