Answers

Question and Answer:

  Home  VB .Net

⟩ Whats the C# equivalent of C++ catch (...), which was a catch-all statement for any possible exception?

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 {}.

 176 views

More Questions for you: