can we have try block without catch block?
Yes, it is possible to have a try block without a catch block in C#. The try block can be followed by either a finally block or both a finally block and a catch block. The finally block is executed regardless of whether an exception is thrown or caug...
Feb 26, 20232 min read10