提问者:小点点

如何将int存储到文本文件C#[closed]中


头衔。

int->.txt文件

C#。

int moneythatIhave = Convert.ToInt32(Console.ReadLine());
File.WriteAllText(Path, moneythatIhave);
// replace path with your path

是我试过的代码,但它抛出了一个错误


共1个答案

匿名用户

使用MoneyThatiHave.ToString(),因为File.WriteAllText需要String?作为第二个参数,但MoneyThatiHaveInt

您还应该通过以下方法来测试输入是否真的是一个整数

if (int.TryParse(Console.ReadLine(), out int moneythatIhave)) 
     File.WriteAllText("file.txt", moneythatIhave.ToString());