System.Diagnostics.Debug.WriteLine C# (CSharp) Method

WriteLine() private method

private WriteLine ( object value ) : void
value object
return void
        public static void WriteLine(object value)
        {
            WriteLine(value?.ToString());
        }

Same methods

Debug::WriteLine ( object value, string category ) : void
Debug::WriteLine ( string message ) : void
Debug::WriteLine ( string message, string category ) : void

Usage Example

Esempio n. 1
0
 public static void Info(string message)
 {
     if (IsDebuggerAttached)
     {
         Dbg.WriteLine(message);
     }
 }
All Usage Examples Of System.Diagnostics.Debug::WriteLine