Goedel.Debug.Trace.Write C# (CSharp) Method

Write() public static method

Write the specified text to the debug output.
public static Write ( string Text ) : void
Text string
return void
        public static void Write(string Text) {
            if (Disable) return;
            Console.WriteLine(Text);
            //System.Diagnostics.Trace.Write(Text);
            }

Same methods

Trace::Write ( string Text, Object Data ) : void