This documentation is archived and is not being maintained.

StronglyTypedResourceBuilder::Create Method (String, String, String, String, CodeDomProvider, Boolean, array<String>%)

Generates a class file that contains strongly-typed properties that match the resources in the specified .resx file.

Namespace:  System.Resources.Tools
Assembly:  System.Design (in System.Design.dll)

public:
static CodeCompileUnit^ Create(
	String^ resxFile, 
	String^ baseName, 
	String^ generatedCodeNamespace, 
	String^ resourcesNamespace, 
	CodeDomProvider^ codeProvider, 
	bool internalClass, 
	[OutAttribute] array<String^>^% unmatchable
)

Parameters

resxFile
Type: System::String
The name of a .resx file used as input.
baseName
Type: System::String
The name of the class to be generated.
generatedCodeNamespace
Type: System::String
The namespace of the class to be generated.
resourcesNamespace
Type: System::String
The namespace of the resource to be generated.
codeProvider
Type: System.CodeDom.Compiler::CodeDomProvider
A CodeDomProvider class that provides the language in which the class will be generated.
internalClass
Type: System::Boolean
true to generate an internal class; false to generate a public class.
unmatchable
Type: array<System::String>%
A String array that contains each resource name for which a property cannot be generated. Typically, a property cannot be generated because the resource name is not a valid identifier.

Return Value

Type: System.CodeDom::CodeCompileUnit
A CodeCompileUnit container.

ExceptionCondition
ArgumentNullException

basename or codeProvider is nullptr.

Use the Create method to generate a class that provides strongly-typed, read-only access to the resources that are contained in the resxFile parameter.

The StronglyTypedResourceBuilder class ignores any resource name that begins with the characters "$" or ">>". The resource names "Culture" and "ResourceManager" are invalid identifiers.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: