XsltLibrary.FormatMessage(String, IList<String>) 方法

定义

设置异常消息的格式,该消息由 res 形参提供的格式字符串和 args 形参包含的实参组成。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 System::String ^ FormatMessage(System::String ^ res, System::Collections::Generic::IList<System::String ^> ^ args);
public string FormatMessage (string res, System.Collections.Generic.IList<string> args);
member this.FormatMessage : string * System.Collections.Generic.IList<string> -> string
Public Function FormatMessage (res As String, args As IList(Of String)) As String

参数

res
String

包含消息资源的字符串。

args
IList<String>

表示方法的实参的字符串列表。

返回

String

包含格式化的异常消息的字符串。

适用于