I have this code in Java that I used to report exceptions (throws FileNotFoundException , IOException , ClassNotFoundException ).
Example:
private void functionName() throws FileNotFoundException, IOException, ClassNotFoundException{}
I need to do this in C# , how can I do this?
source share