如果我有错误,可以将它发送到错误处理行,如下所示。我知道如何在visual basic中做到这一点,但在C#中需要一些帮助。谢谢你的帮助
Sub Main()
On Error GoTo ErrHand
....Code Here
End Sub
ErrHand:
MsgBox "Message Here"
End Sub
答案 0 :(得分:9)
On Error GoTo模式在.NET中升级为:
try
{
// Execute your code
}
catch <ExceptionType>
{
// Handle exception
}
finally
{
// Cleanup resources
}
以下链接Error Handling Transformation应该为您提供一些信息。
答案 1 :(得分:1)
try
{
//your code here
}
catch
{
// error handling here
}
答案 2 :(得分:0)
你错过了很多C#的基本信息,有时间进行一些培训吗?
try
{
//Code here
}catch(Exception ex)
{
HandleExeption(ex)
}
答案 3 :(得分:0)
我可以完成(逻辑上),但它不是purdy
bool TestMethod()
{
string _errorMessage = string.Empty;
bool returnValue = true;
try
{
int x;
throw new Exception("Force Call To Error Handler");
}
catch (Exception ex)
{
_errorMessage = ex.ToString();
goto errHandler;
}
//Other code here
exitCode:
;
return returnValue;
//Exit code here
errHandler:
;
//Error Code Here
returnValue = false;
goto exitCode;
}