MessageBox.Show("Solution Downloaded in C:/dwnload/working");
}
猛跑小猪
浏览 255回答 3
3回答
慕桂英546537
您应该在try语句中可能引发异常的代码之后执行此操作。try{ // do operation that could throw exception // display message}catch (Exception e){ // catch code}finally{ // code to run at the end regardless of success/failure}