| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //
- // System.CodeDom CodeMemberMethod Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- public class CodeMemberMethod : CodeClassMember {
- CodeParameterDeclarationExpressionCollection parameters;
- CodeStatementCollection statements;
- string implementsType;
- string returnType;
- bool privateImplements;
-
- public CodeMemberMethod ()
- {
- }
- public string ImplementsType {
- get {
- return implementsType;
- }
- set {
- implementsType = value;
- }
- }
- public bool PrivateImplements {
- get {
- return privateImplements;
- }
- set {
- privateImplements = value;
- }
- }
- public string ReturnType {
- get {
- return returnType;
- }
- set {
- returnType = value;
- }
- }
- public CodeParameterDeclarationExpressionCollection Parameters {
- get {
- return parameters;
- }
- set {
- parameters = value;
- }
- }
- public CodeStatementCollection Statements {
- get {
- return statements;
- }
- set {
- statements = value;
- }
- }
- }
- }
|