| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // System.CodeDom CodeAttributeDeclaration Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- [Serializable]
- 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;
- }
- }
- }
- }
|