2010年10月27日 星期三

C# throw 用法

用於自訂錯誤上
就是如果遇到自訂問題
會中斷程式而跑出自己定義的錯誤
所以大致上都會搭配Try Catch使用

string message = string.Format("connection timeout");
throw new TimeoutException(message);


然後try Catch 就如這樣用

try
{
connn();
}
catch (TimeoutException ex)
{
MessageBox.Show(ex.ToString());
}

沒有留言:

張貼留言