string FirstName = Console.ReadLine();
if (FirstName.Length > 12)
{
Console.WriteLine(".......................................");
}
if(FirstName.Length<3)
{
Console.WriteLine("....................");
}
Console.WriteLine("...................");
string SecondName = Console.ReadLine();
if (SecondName.Length > 12)
{
Console.WriteLine(".............................");
}
if(SecondName.Length<3)
{
我想要停止程序,如果他們按下輸入沒有提及價值,怎麼做?? /?如何停止在C#中進一步執行程序#
可能重複的[如何關閉一個無形的C#應用程序](http://stackoverflow.com/questions/181018/how-to-close-a-formless-c-sharp-application) –
這個問題和你的其他問題表明你對C#完全陌生。請先閱讀一些教程。 – venerik
閱讀更多的答案在這裏:http://stackoverflow.com/a/4898117/468718 –