ApprovalUtilities.SimpleLogger.LoggerInstance.Variable C# (CSharp) Method

Variable() public method

public Variable ( string name, object value ) : void
name string
value object
return void
        public void Variable(string name, object value)
        {
            if (showVariables)
            {
                Write("Variable: " + name + " = '" + value + "'");
            }
        }

Usage Example

コード例 #1
0
 public static void Variable(string name, object value)
 {
     log.Variable(name, value);
 }