| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // System.CodeDom CodeMethodReturnStatement class implementation
- //
- // Author:
- // Sean MacIsaac ([email protected])
- // Daniel Stodden ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeMethodReturnStatement
- : CodeStatement
- {
- private CodeExpression expression;
- //
- // Constructors
- //
- public CodeMethodReturnStatement()
- {
- }
-
- public CodeMethodReturnStatement( CodeExpression expression )
- {
- this.expression = expression;
- }
-
- //
- // Properties
- //
- public CodeExpression Expression {
- get {
- return expression;
- }
- set {
- expression = value;
- }
- }
- }
- }
|