What is "turning on a trace"?
-
I'm reading chapter 1 of Lippman's C# Primer. He talks about using the "-t" option. Could some one please elaborate what this means and why I would want to do it... thanks a lot
-t option for what? :|**
How xacc.ide transforms text to colored words on the screen
Intel PentuimM (aka Centrino) undervolting**
-
I'm reading chapter 1 of Lippman's C# Primer. He talks about using the "-t" option. Could some one please elaborate what this means and why I would want to do it... thanks a lot
It means that when you can't figure something out, you should take a break for some tea. Hence the -t. You know, dash off and get some tea. :) Chris Meech I am Canadian. [heard in a local bar] The America I believe in has always understood that natural harmony is only one meal away from monkey burgers. [Stan Shannon] GOOD DAY FOR: Bean counters, as the Australian Taxation Office said that prostitutes and strippers could claim tax deductions for adult toys and sexy lingerie. [Associated Press]
-
I'm reading chapter 1 of Lippman's C# Primer. He talks about using the "-t" option. Could some one please elaborate what this means and why I would want to do it... thanks a lot
Tracing is running with additional back-end output. You should be able to figure out what's going on based on this. In C#, System.Debug.Trace is a static class that drives trace output. The C# compiler (csc) doens't have a -t command line option. What program is at the beginning of the command line that Lippman is quoting here?
-
I'm reading chapter 1 of Lippman's C# Primer. He talks about using the "-t" option. Could some one please elaborate what this means and why I would want to do it... thanks a lot
I dont know if there is any option -t but there is a command line option /t that specifies the type of target assembly i.e. whether its exe,dll or module. Wasif Ehsan.