gpt4 book ai didi

C# 将 long 转换为字符串

转载 作者:太空狗 更新时间:2023-10-29 17:28:47 25 4
gpt4 key购买 nike

我的问题是:

我有这个代码:

static long CountLinesInFile(string f)
{
long count = 0;
using (StreamReader r = new StreamReader(f))
{
string line;
while ((line = r.ReadLine()) != null)
{
count++;
}
}
return count;
}

计算文本文件的行数。我遇到的问题是,当我尝试这样做时:

textBox1.Text = CountLinesInFile("test.txt");

我收到一个错误:

Error   1   Cannot implicitly convert type 'long' to 'string'

这似乎是合法的,但我应该如何将其转换为字符串呢?在 Java 中它是一个简单的 toString()

谁能给我一个解决方案?

最佳答案

像这样使用 ToString() 方法:

textBox1.Text = CountLinesInFile("test.txt").ToString();

关于C# 将 long 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11610224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com