Method GetLocalizedList
GetLocalizedList(List<string>)
Forces a synchronous load of all child strings and returns the combined list.
Declaration
public List<string> GetLocalizedList(List<string> target = null)
Parameters
| Type | Name | Description |
|---|---|---|
| List<string> | target | Optional caller-owned list to populate to avoid allocations. |
Returns
| Type | Description |
|---|---|
| List<string> | A combined list of all child strings. |
Implements
Remarks
If you provide a target list, it is cleared and populated with the result.
Otherwise, this method allocates a new list.