Class CSharpAttribute
- Namespace
- NanoByte.CodeGeneration
- Assembly
- NanoByte.CodeGeneration.dll
An attribute on a CSharpInterface, CSharpClass or CSharpProperty.
public class CSharpAttribute
- Inheritance
-
CSharpAttribute
- Inherited Members
Constructors
CSharpAttribute(CSharpIdentifier)
An attribute on a CSharpInterface, CSharpClass or CSharpProperty.
public CSharpAttribute(CSharpIdentifier identifier)
Parameters
identifier
CSharpIdentifierThe type of the attribute.
Properties
Arguments
Arguments for the attribute.
public List<object> Arguments { get; }
Property Value
Identifier
The type of the attribute.
public CSharpIdentifier Identifier { get; }
Property Value
NamedArguments
Named Arguments for the attribute.
public List<(string name, object value)> NamedArguments { get; }