| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // System.CodeDom CodeClassDelegate Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- public class CodeClassDelegate : CodeClass {
- CodeParameterDeclarationExpressionCollection parameters;
- string returnType;
- string name;
- //
- // Constructors
- //
- public CodeClassDelegate ()
- {
- }
- public CodeClassDelegate (string name)
- {
- this.name = name;
- }
- //
- // Properties
- //
- public CodeParameterDeclarationExpressionCollection Parameters {
- get {
- return parameters;
- }
- set {
- parameters = value;
- }
- }
- public string ReturnType {
- get {
- return returnType;
- }
- set {
- returnType = value;
- }
- }
- }
- }
|