M
macneed
try
{
if(i==3)
goto catch;
Console.WriteLine(i);
}
catch
{
Console.WriteLine("i = 3");
}
any statement can do the below job?
goto catch;
or i must write a dirty statement like open a non exceed file?
Thanks
{
if(i==3)
goto catch;
Console.WriteLine(i);
}
catch
{
Console.WriteLine("i = 3");
}
any statement can do the below job?
goto catch;
or i must write a dirty statement like open a non exceed file?
Thanks