温馨提示×

c# writeline如何进行变量输出

c#
小樊
81
2024-11-25 12:07:45
栏目: 编程语言

在C#中,使用WriteLine方法输出变量时,需要先将变量转换为字符串类型(如string),然后将其传递给WriteLine方法。这里有一个简单的示例:

using System;

namespace WriteLineExample
{
    class Program
    {
        static void Main(string[] args)
        {
            // 定义变量
            int number = 42;
            string text = "Hello, World!";

            // 使用WriteLine输出变量
            Console.WriteLine("Number: " + number);
            Console.WriteLine("Text: " + text);

            // 使用String.Format输出变量
            Console.WriteLine(String.Format("Number: {0}, Text: {1}", number, text));
        }
    }
}

在这个示例中,我们定义了一个整数变量number和一个字符串变量text。然后,我们使用Console.WriteLine方法分别输出这两个变量。注意,我们在字符串中使用了+运算符将变量与字符串连接起来。此外,我们还展示了如何使用String.Format方法进行格式化输出。

0