What?s the C# equivalent of C++ catch (?), which was a
catch-all statement for any possible exception?
Answer / guest
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 {}.
Is This Answer Correct ? | 0 Yes | 1 No |
What is difference between throw and throws in c#?
What?s the .NET datatype that allows the retrieval of data by a unique key?
What is tryparse?
What is overloading in c#?
What is .net console?
What are strongly typed objects?
What is marshalling and what are different kinds of marshalling?
What is the difference between int.Parse() and Convert.toInt32().
Can structs in c# have destructors?
Is javascript harder than c#?
What is session variable in c#?
Can I use ReaderWriterLock instead of Monitor.Enter/Exit for Threading?