BytesRoad.Diag.NSTrace.WriteLineIf C# (CSharp) Method

WriteLineIf() private method

private WriteLineIf ( bool condition, object value ) : void
condition bool
value object
return void
        public static void WriteLineIf(bool condition, object value)
        {
            if(condition)
                WriteLine(value);
        }

Same methods

NSTrace::WriteLineIf ( bool condition, object value, string category ) : void
NSTrace::WriteLineIf ( bool condition, string message ) : void
NSTrace::WriteLineIf ( bool condition, string message, string category ) : void