can anyone help me in creating a "logfile" to write all the exceptions that occur in C#
I like this one too :-)
Seb
2010-03-18 10:40:03
+2
A:
Instead of writing your own logging framework, you can use one of the following:
šljaker
2010-03-18 10:35:25
+2
A:
Apart from the already suggested frameworks, there is also built-in tracing support in the .NET Framework.
Fredrik Mörk
2010-03-18 10:40:30
Built-in traces are a very good tool, and you can also turn them on and off in runtime using TraceSwtiches. I'll prefer this approach instead of relying on 3rd party libraries.
munissor
2010-03-18 10:43:37