Exception, InnerException
Posted on
5/26/2009 3:05:52 PM, in
Programlama
Olusan bütün hatalari görülmesi ve izlenmesi için izlenilmesi gereken yöntem..
catch(Exception ex)
{
string errMessage = "";
for( Exception tempException = ex; tempException != null ; tempException = tempException.InnerException )
{
errMessage += tempException.Message + Environment.NewLine + Environment.NewLine;
}
}
paylasim için
Ferit Arslan tesekkürler...