在这种方法中,我写了一条错误消息。我需要写出使用此方法而不是 {0} 的当前类的名称。希望我的问题很清楚。谢谢。
class WriteEx
{
public void WriteFormatExceptionError(string value, Exception ex, Logger logger)
{
string message = string.Format("Error occured in {0}. Cannot convert input string to double. Input string value: {1}.", **class name that used this method**, value);
logger.WriteLog(message, ex);
Console.WriteLine(ex.Message);
}
}