i just want to know from you guys about the use of finally in Try Catch code????
ome2012 2 Junior Poster in Training
Recommended Answers
Jump to PostDo you have a more specific question? I'm not keen on writing an exception handling tutorial.
Jump to PostTake a look at the MSDN article. And try this out:
Sub Main() Try Try Console.WriteLine("Try") Throw New Exception("Try") Catch Console.WriteLine("Catch") Throw New Exception("Catch") Finally Console.WriteLine("Finally") End Try Catch ex …
All 5 Replies
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
nmaillet 97 Posting Whiz in Training
TnTinMN 418 Practically a Master Poster
brylle -2 Junior Poster in Training
ome2012 2 Junior Poster in Training
brylle commented: You're welcome! +2
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.