我在Java
中有此代码,我曾用于报告异常(抛出FileNotFoundException
,IOException
,ClassNotFoundException
)。
示例:
private void functionName() throws FileNotFoundException, IOException, ClassNotFoundException{}
我需要在C#
中执行此操作,我该怎么做?
答案 0 :(得分:1)
这很简单。在C#中,您不能直接使用throws
语句,因为没有。您可能想要使用此代码:
private void functionName(){ throw new IOException();}
这会抛出IOException。由于IOException是一个类,您需要使用new
语句创建一个新的。