可以采取如下形式記錄異常
在文件中記錄異常
在數據庫中記錄異常
在Eventlog中記錄異常
除了可預料到的異常外
異常處理
try
{
int x =
}
catch
{
//
}
finally
{
//
}
本章的異常處理是針對容易出現錯誤的地方(操作數據庫)應用此技術
C#中常見異常類
Exception
SystemException
IndexOutOfRangeException
NullReferenceException
InvalidOperationException
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InteropException
ComException
SEHException
SqlException
[
From:http://tw.wingwit.com/Article/program/net/201311/15390.html