Why are there five tracing levels in
System.Diagnostics.TraceSwitcher?

Answer Posted / guest

The tracing dumps can be quite verbose and for some
applications that are constantly running you run the risk of
overloading the machine and the hard drive there. Five
levels range from None to Verbose, allowing to fine-tune the
tracing activities.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

3289


Is c# easier than javascript?

519


Is c# used for frontend or backend?

574


What is difference between list and ilist in c#?

459


Can a loop recorder detect a heart attack?

547






How do I declare inout arguments in c#?

529


Explain synchronous and asynchronous operations?

527


Explain About .NET Framework

523


What Happens In Memory When You Box And Unbox A Value-type?

464


What is dataview c#?

458


What are delegates and why are they required?

499


What is the use of console?

478


How do you achieve polymorphism in c#?

499


How do I run a cshtml file?

488


What is the c# equivalent of c++ catch (...), Which was a catch-all statement for any possible exception?

490