Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How in C# if I have error can I send it to an error handling line like below. I know how to do it in visual basic, but need a little assistance in C#. Thanks for the help

Sub Main()
On Error GoTo ErrHand
....Code Here
End Sub

ErrHand:
  MsgBox "Message Here"
End Sub
share|improve this question

3 Answers

up vote 8 down vote accepted

The On Error GoTo pattern is upgraded in .NET to:

try
{
   // Execute your code
}
catch  <ExceptionType>
{
 // Handle exception
}
finally
{
 // Cleanup resources
}

The following link Error Handling Transformation should give you some info.

share|improve this answer
1  
Couple things to note - finally isn't required, but it's good to have if you have any resources to release (Usually this is some kind of Stream). You can also set up multiple catch statements to deal with different kinds of exceptions. – Kristian Fenn Oct 24 '11 at 13:13
Thanks that will definately help me out I am glad you can use multiple catch's because there are plenty of different senarios. really appreciated. – Russell Saari Oct 24 '11 at 13:15
try
{
   //your code here
}
catch
{
   // error handling here
}
share|improve this answer

You're missing a lot of C# basic information, time for a little training?

try
{
    //Code here
}catch(Exception ex)
{
    HandleExeption(ex)
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.