如何使用c#

时间:2016-09-07 14:03:52

标签: c# try-catch throw

这样的throw exeption的关键词是什么?

public void methodOne() throw SomeExeption {
     try{
         doSomething();
     catch(SomeExeption se) {
         throw se;
     }
}

public void startThere() {
   try{
       methodOne();
   catch(SomeExeption se) {
       Console.writeln("FAIL");
   }
}

我不知道怎么写。我收到了语法错误。

感谢您的帮助。

0 个答案:

没有答案