Infrastructure.ConsoleWindowLogger.FormatMessage C# (CSharp) Method

FormatMessage() public static method

public static FormatMessage ( string message, Type typeToLog ) : string
message string
typeToLog System.Type
return string
        public static string FormatMessage(string message, Type typeToLog, params object[] values)
        {
            return string.Format(
                CultureInfo.InvariantCulture,
                MessageFormat,
                typeToLog.FullName,
                string.Format(CultureInfo.InvariantCulture, message, values));
        }