这就是我想要的:
static void A(string s)
{
//Code Here...
}
static void B(string s)
{
//Code Here...
}
static void C(string s)
{
//Code Here...
}
static void Main(string[] args)
{
string temp = Console.ReadLine();
string[] s = temp.Split(' ');
if (s[0] == "A")
A(s[1]);
if (s[0] == "B")
B(s[1]);
if (s[0] == "C")
C(s[1]);
}
但是当我有很多方法时,它并不能很好地工作......
还有另一种方法可以做到这一点吗?