Method GetLocalizedString
GetLocalizedString()
Returns the localized text after formatting has been applied.
This will use SmartFormat if Is
Declaration
public string GetLocalizedString()
Returns
Type | Description |
---|---|
string |
Remarks
The following process is applied when generating a localized string:
GetLocalizedString(params object[])
Returns the localized text after formatting has been applied.
Formatting will use SmartFormat if Is
Declaration
public string GetLocalizedString(params object[] args)
Parameters
Type | Name | Description |
---|---|---|
object[] | args | Arguments that will be applied to Smart Format or |
Returns
Type | Description |
---|---|
string |
GetLocalizedString(IList<object>)
Returns the localized text after formatting has been applied.
Formatting will use SmartFormat if Is
Declaration
public string GetLocalizedString(IList<object> args)
Parameters
Type | Name | Description |
---|---|---|
IList<object> | args | Arguments that will be applied to Smart Format or |
Returns
Type | Description |
---|---|
string |
GetLocalizedString(IFormatProvider, IList<object>)
Returns the localized text after formatting has been applied.
Formatting will use SmartFormat is Is
Declaration
public string GetLocalizedString(IFormatProvider formatProvider, IList<object> args)
Parameters
Type | Name | Description |
---|---|---|
IFormat |
formatProvider | Custom format provider used with String.Format and smart strings.
If formatProvider is null, RemoveFromTable uses the Locale |
IList<object> | args | Arguments that will be applied to Smart Format or |
Returns
Type | Description |
---|---|
string |
GetLocalizedString(IFormatProvider, IList<object>, PseudoLocale)
Returns the localized text after formatting has been applied.
Formatting will use SmartFormat is Is
Declaration
public string GetLocalizedString(IFormatProvider formatProvider, IList<object> args, PseudoLocale pseudoLocale)
Parameters
Type | Name | Description |
---|---|---|
IFormat |
formatProvider | Custom format provider used with String.Format and smart strings.
If formatProvider is null, RemoveFromTable uses the Locale |
IList<object> | args | Arguments that are be applied to Smart Format or |
Pseudo |
pseudoLocale | Optional Pseudo |
Returns
Type | Description |
---|---|
string |