所以,我第一次开发这个Crud是为了学习,我删除了一些东西,但你会理解我的观点。关键是,我做了一个选择我想做的事情(插入/更新/删除/选择),每一个,例如插入,是一个方法,我开发它的代码来做它的功能。在方法结束时,我想给用户提供返回Main方法的选项,这样他就可以选择他想做什么,此时我该怎么办?
namespace Crud
{
class Program
{
a,s.dlahflkashlfhliah // Ignore this!!
static void Main(string[] args)
{
Console.Clear();
Console.Write("Menu stuff, ignore this as well ");
var option = int.Parse(Console.ReadLine());
switch (option)
{
case 1:
Insert();
break;
default:
Console.WriteLine("Default");
break;
}
}
public static void Insert()
{
agoihilgbakjfçasdhuoh // Ignore this!!!
Console.Write("\nData Inserted!");
Thread.Sleep(3000);
Console.Write(" (Press any key to go back to menu.)");
command.Connection.Open(); // sql stuff
command.ExecuteNonQuery(); // sql stuff
Console.ReadKey();
// do I use a return to go back to menu??? (return to the Main method)
}
}
}