なぜこのコードを実行しているのですが、2番目の方法の質問は繰り返されますか?メソッドが誤って2回実行されている
using System;
namespace mdisafmidf
{
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine("Hello world!");
CallMethod0();
Console.WriteLine(CallMethod0());
Console.ReadKey();
}
public static string CallMethod0()
{
string x;
Console.WriteLine("Do you agree this is a good day?");
Console.WriteLine("a)Yes b)No");
x = Console.ReadLine();
if (x == "Yes")
{
return ("Of course this is a good day");
}
else
{
return ("Oh, try and stay more positive!");
}
}
}
}
私はデバッガやprintステートメントで簡単にデバッグすることができ、他のユーザーには価値がないので、この質問をトピックとしてクローズすることにしました。 –