Added help command text in C#

This commit is contained in:
MartinEesmaa
2022-02-22 06:26:14 +00:00
committed by GitHub
parent 582b4435d0
commit c6f22468ac

View File

@ -77,6 +77,23 @@ namespace VVCEasy
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);
}