C1.WPF.Localization Namespace / C1Localizer Class / GetString Method / GetString(String,String,String,Assembly) Method
The name of resource dictionary.
The resource key.
The default value.
The executing assembly.

In This Topic
GetString(String,String,String,Assembly) Method
In This Topic
Returns the localized string for the specified culture.
Syntax
'Declaration
 
Public Overloads Shared Function GetString( _
   ByVal resourceDictionary As String, _
   ByVal resourceKey As String, _
   ByVal defaultValue As String, _
   Optional ByVal currentAssembly As Assembly _
) As String
 

Parameters

resourceDictionary
The name of resource dictionary.
resourceKey
The resource key.
defaultValue
The default value.
currentAssembly
The executing assembly.
Remarks
Search order: - searching in the executing Assembly; - repeating the search for the parent culture; - if result is not found, returning the specified default value.
See Also