Click or drag to resize
Llvm.NET LogoAttributeValue Constructor (String, String)

[This is preliminary documentation and is subject to change.]

Adds a Target specific named attribute with value

Namespace:  Llvm.NET.Values
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public AttributeValue(
	string name,
	string value
)

Parameters

name
Type: SystemString
Name of the attribute
value
Type: SystemString
Value of the attribute
Remarks
Since a valid Context is required to create an attribute value this requires that CurrentContext is not . In other words a Context must have already been created for the current thread by the time this is called so it cannot be used to initialize static instances.
See Also