NSString.LocalizedFormat Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| LocalizedFormat(NSString, NSObject[]) |
Format a localizable string with the specified arguments. |
| LocalizedFormat(NSString, Object[]) |
Format a localizable string with the specified arguments. |
| LocalizedFormat(String, Object[]) |
Format a localizable string with the specified arguments. |
LocalizedFormat(NSString, NSObject[])
Format a localizable string with the specified arguments.
public static Foundation.NSString LocalizedFormat(Foundation.NSString format, Foundation.NSObject[] args);
static member LocalizedFormat : Foundation.NSString * Foundation.NSObject[] -> Foundation.NSString
Parameters
- format
- NSString
The localizable string to format.
- args
- NSObject[]
The arguments to apply to the localizable string.
Returns
A localized string with the specified format arguments applied.
Applies to
LocalizedFormat(NSString, Object[])
Format a localizable string with the specified arguments.
public static Foundation.NSString LocalizedFormat(Foundation.NSString format, params object[] args);
static member LocalizedFormat : Foundation.NSString * obj[] -> Foundation.NSString
Parameters
- format
- NSString
The localizable string to format.
- args
- Object[]
The arguments to apply to the localizable string.
Returns
A localized string with the specified format arguments applied.
Applies to
LocalizedFormat(String, Object[])
Format a localizable string with the specified arguments.
public static Foundation.NSString LocalizedFormat(string format, params object[] args);
static member LocalizedFormat : string * obj[] -> Foundation.NSString
Parameters
- format
- String
The localizable string to format.
- args
- Object[]
The arguments to apply to the localizable string.
Returns
A localized string with the specified format arguments applied.