使用String.Format功能的记录方法

时间:2017-06-13 21:59:24

标签: c# arrays string.format

我有通用的Log方法,可以将条目写入日志文件,事件日志等

public static void Log(string logEntry)
{
    // Write DateTime and logEntry to Log File, Event Log, etc.
}

我创建了重载以使用以下命令提供String.Format()功能:

public static void Log(params object[] logEntry)
{
    // Purpose: Overload Log method to provide String.Format() functionality
    //          with first parameter being Format string.
    // Example: Log("[{0:yyyy-MM-dd}] Name: {1}, Value: {2:#,##0.00}", DateTime.Now, "Blah, Blah, Blah", 12345.67890)

    string formatString = logEntry[0].ToString();

    object[] values = new object[logEntry.Length - 1];

    for (int i = 1; i < logEntry.Length; i++)
    {
        values[i - 1] = logEntry[i];
    }

    Log(String.Format(formatString, values));
}

这没关系,但有没有更好的方法来引用剩余的数组项以传递给String.Format()函数?或者更好的方法从数组中删除元素0?

我知道我也可以使用Log(String.Format(...,但是我提供这个用于更正式的目的。

2 个答案:

答案 0 :(得分:5)

您可以使用

public void Log(string message, params object[] args)

或者更好的是,使用现有的框架,例如NLog或Log4Net,其中包含

等API
public void Log(LogLevel level, string message, param object[] args)

public void Log(LogLevel level, Exception exception, string message, param object[] args)

答案 1 :(得分:3)

我将参数与String.Format()匹配。

public static void Log(string logEntry)
{
    Log(logEntry, null);
}

public static void Log(string logEntry, params object[] values)
{
   // Do whatever extra processing you need here.
   Log(String.Format(logEntry, values));
}