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