| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //
- // System.CodeDom CodeAttributeDeclaration Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- public class CodeAttributeDeclaration {
- string name;
- CodeAttributeArgumentCollection arguments;
-
- //
- // Constructors
- //
- public CodeAttributeDeclaration ()
- {
- }
- public CodeAttributeDeclaration (string name)
- {
- this.name = name;
- }
- public CodeAttributeDeclaration (string name, CodeAttributeArgument [] arguments)
- {
- this.name = name;
- this.arguments = new CodeAttributeArgumentCollection ();
- this.arguments.AddRange (arguments);
- }
- //
- // Properties
- //
- public CodeAttributeArgumentCollection Arguments {
- get {
- return arguments;
- }
- set {
- arguments = value;
- }
- }
- public string Name {
- get {
- return name;
- }
- set {
- name = value;
- }
- }
- }
- }
|