昨天我在这里问了一个关于方法如何写入控制台的问题。今天,我编写了这个快速的小程序,但它并没有像我想象的那样工作。链接中的程序从未调用 Main 方法向控制台写入任何内容,但文本仍会出现在那里。我尝试使用下面的小片段遵循相同的逻辑,但它没有做任何事情。为什么下面的程序没有向控制台写入单词“hello”?编辑:链接在这里
using System;
class DaysInMonth
{
static void Main(string[] args)
{
int[] DaysInMonth = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
Console.Write("enter the number of the month: ");
int month = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("that month has {0} days", DaysInMonth[month - 1]);
}
static void WriteIt(string s)
{
string str = "hello";
Console.WriteLine(str);
}
}