mirror of
https://github.com/MartinEesmaa/VVCEasy.git
synced 2025-06-05 21:59:20 +02:00
Added help command text in C#
This commit is contained in:
17
Program.cs
17
Program.cs
@ -77,6 +77,23 @@ namespace VVCEasy
|
|||||||
Console.ReadLine();
|
Console.ReadLine();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (input == "3")
|
||||||
|
{
|
||||||
|
helpingvvc:
|
||||||
|
Console.Clear();
|
||||||
|
Console.WriteLine("Welcome to VVCEasy help instructions!\nHere is tutorial about... How to use VVCEasy?");
|
||||||
|
Console.ReadLine();
|
||||||
|
Console.WriteLine("Step 1: Run on VVCEasy.bat. When you see the screen of Welcome to VVCEasy. You can press any key continue to main menu.\nStep 2: Here are the list of main menus, that you need type any number will go to direction like (goto) command.\nStep 3: Follow the command instructions and that is easy.");
|
||||||
|
Console.ReadLine();
|
||||||
|
Console.WriteLine("If you have any problems that you do not understand of VVCEasy. Please contact to Martin Eesmaa by creating issues for questions or/and problems.\nDo you want to start over help instructions? If yes, then it will go back from beginning. If No, going to back menu. Y/N?");
|
||||||
|
|
||||||
|
string helper = Console.ReadLine();
|
||||||
|
|
||||||
|
if (helper == "Y" + "y")
|
||||||
|
{
|
||||||
|
goto helpingvvc;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
while (exit == false);
|
while (exit == false);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user