C#将long转换为字符串

前端之家收集整理的这篇文章主要介绍了C#将long转换为字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的问题在于:

我有这个代码

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();
原文链接:https://www.f2er.com/csharp/99091.html

猜你在找的C#相关文章