IContext.GetResourceString3 Method
Namespace: NextDesign.Desktop
Description
Gets the string of the specified resource key.
In this case, the substitutions "{0},{1},{2}" defined in the resource string are replaced with the string representations of param1, param2, and param3 specified in the arguments, and returned.
Note that resource parameter replacement conforms to C# String.Format.
See GetResourceString() for details on how to specify the resource string and the resource key.
Arguments
Name | Type | Description |
---|---|---|
key | string | Resource key |
param1 | object | Resource parameter replacement object Object to replace with the replacement "{0}" in the resource string If null is specified, it will be replaced with the string "null". |
param2 | object | Resource parameter replacement object Object to replace with the replacement "{1}" in the resource string If null is specified, it will be replaced with the string "null". |
param3 | object | Resource parameter replacement object Object to replace with the replacement "{2}" in the resource string If null is specified, it will be replaced with the string "null". |
Return value
- string