C# program to demonstrate the use of finally blocks
Program.cs
strings=null;try{Console.WriteLine("Length: "+s.Length);}catch(Exceptione){Console.WriteLine("Exception caught");}finally{Console.WriteLine("Finally block is always get executed");}
Output
codeaft@codeaft:~/csharp$ dotnet run
Exception caught
Finally block is always get executed
codeaft@codeaft:~/csharp$
Dear User, Thank you for visitng Codeaft. If you are interested in technical articles, latest technologies, and our journey further, please follow us on LinkedIn.