我想从一个开关盒转移到另一个:
Switch()
{
}
c=console.readline();
switch(yup)
{
case y:
"I WANT TO CALL SWITCH 1;"
case n:
EXIT;
}
我想从一个开关盒转移到另一个:
Switch()
{
}
c=console.readline();
switch(yup)
{
case y:
"I WANT TO CALL SWITCH 1;"
case n:
EXIT;
}
如果你想“调用另一个开关”,你必须将它提取到一个单独的方法中,然后调用它。
public static void Main()
{
MethodWithFirstSwitch();
c=console.readline();
switch(yup)
{
case y:
MethodWithFirstSwitch();
case n:
EXIT;
}
}
private static void MethodWithFirstSwitch()
{
switch(something)
{
case "something":
break;
default:
break;
}
}
我不确定这是否是您问题的准确近似值。你有一个开关,然后总是想运行一些代码,然后是一个新的开关,其中一个案例运行与以前相同的开关。
当然,由于不存在变量和调用,这不会按原样运行,EXIT;
但作为示例。
如果这不能回答您的问题,请更新原始帖子,详细说明您要实现的目标。
我认为这就是您想要的:-
switch(yup)
{
case y:
{
//call your switch inside case y
switch()
{
----
----
}
}
case n:
EXIT;
}
要按字面意思做你所要求的,你需要一个goto
. 然而,大多数人都非常不喜欢它,goto
因为它使您的代码非常难以理解、调试和维护。
通常我会使用do
/while
循环,检查您在准备退出时设置的变量。像这样的东西:
bool done = false;
do
{
switch(/* ... */)
{
// ...
}
c = Console.ReadLine();
switch(yup)
{
case y:
break;
case n:
done = true;
break;
}
}
while(!done);
private void Form1_Load(object sender, EventArgs e)
{
MyFirstSwitch(true);
//c=console.readline();
string yup;
switch (yup)
{
case "y":
MyFirstSwitch(false);
break;
case "n":
//Exit
break;
}
}
private void MyFirstSwitch(bool check)
{
switch (check)
{
case true:
//Do some thing hereZ
break;
case false:
//Do some thing hereZ
break;
}
}