LocalizedDescriptionAttribute Constructor(Type,String,String)
- Last UpdatedAug 21, 2026
- 1 minute read
Initializes a new instance of the LocalizedDescriptionAttribute class. This is to be used to extract a resource from an assembly when the C# resource class is not available.
'Declaration
Public Function New( _
ByVal typeFromAssembly As Type, _
ByVal resourceBaseName As String, _
ByVal resourceId As String _
)
public LocalizedDescriptionAttribute(
Type typeFromAssembly,
string resourceBaseName,
string resourceId
)
public:
LocalizedDescriptionAttribute(
Type^ typeFromAssembly,
String^ resourceBaseName,
String^ resourceId
)
Parameters
- typeFromAssembly
- This is used to derive the assembly name within which the resource exists
- resourceBaseName
- The Resource Base Name, e.g. "ArchestrA.Visualization.Displays.WebCore.Properties.Resources"
- resourceId
- String Id in the resource string table
[LocalizedDescription(typeof(WebPageDisplay), "ArchestrA.Visualization.Displays.WebCore.Properties.Resources", "Address_Description")]