DynamicResourceManager(String, Assembly, String) Constructor

Creates a new instance of DynamicResourceManager class that looks up resources in compiled assemblies and resource XML files based on information from the specified baseName and assembly.

Definition

Namespace: KGySoft.Resources
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public DynamicResourceManager(
	string baseName,
	Assembly assembly,
	string? explicitResXBaseFileName = null
)

Parameters

baseName  String
A root name that is the prefix of the resource files without the extension.
assembly  Assembly
The main assembly for the resources.
explicitResXBaseFileName  String  (Optional)
When the .resx file name will be constructed based on the baseName parameter; otherwise, the given String will be used. This parameter is optional.
Default value: .

See Also