1.

What Is The C# Equivalent Of C++ Catch (....), Which Was A Catch-all Statement For Any Possible Exception?

Answer»

A CATCH BLOCK that catches the exception of type System.Exception. You can also omit the PARAMETER data type in this CASE and just write catch {}.

A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in this case and just write catch {}.



Discussion

No Comment Found