iLyax

IBlox is My Blox

Ilyax:

NetImageBrowser:

NetFileBrowser:

Categories:

IBlox Note's:


Loading

BlogRoll:

GamerMenu on Facebook
RSS Feed

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..

  1. catch(Exception ex)
  2. {
  3. string errMessage = "";
  4. for( Exception tempException = ex; tempException != null ; tempException = tempException.InnerException )
  5. {
  6. errMessage += tempException.Message + Environment.NewLine + Environment.NewLine;
  7. }
  8. }

paylasim için Ferit Arslan tesekkürler...