vb.net

How to use try and catch in vb.net?

How to use try and catch in vb.net?, someone asked me to explain?

Here I am going to describe how to use try catch in vb.net. In this try section write your logic and catch section receive(display) your exception use messagebox or write message.

Try

'Write your logic here

Catch ex As Exception

'Here your exception part

Write(ex.ToString)

End Try

Post your comments / questions