我试图使用占位符而不是连接,但代码运行不正常

时间:2016-06-11 12:04:13

标签: c#

using System;
namespace justPractice
{
    class program
    {
        static void Main()
        {                      
            Console.WriteLine("how do you feel?");
            string feeling = Console.ReadLine();
            Console.WriteLine(feeling,  "{0} is a good sign");
            Console.ReadLine();                   
        }
    }
} 

1 个答案:

答案 0 :(得分:2)

您需要在WriteLine方法中更改参数订单。

Console.WriteLine("{0} is a good sign", feeling);

来自文档;

public static void WriteLine(
    string format,
    object arg0
)

  

format:复合格式字符串(请参阅备注)。

     

arg0:使用格式写入的对象。