System.Xml.Xsl.XsltException.FormatMessage C# (CSharp) Method

FormatMessage() private static method

private static FormatMessage ( string key ) : string
key string
return string
        private static string FormatMessage(string key, params string[] args) {
            string message = Res.GetString(key);
            if (message != null && args != null) {
                message = string.Format(CultureInfo.InvariantCulture, message, args);
            }
            return message;
        }
    }