| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // System.CodeDom FieldDirection Enum 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 CodeDirectionExpression
- : CodeExpression
- {
- private FieldDirection direction;
- private CodeExpression expression;
- //
- // Constructors
- //
- public CodeDirectionExpression()
- {
- }
- public CodeDirectionExpression( FieldDirection direction,
- CodeExpression expression )
- {
- this.direction = direction;
- this.expression = expression;
- }
- //
- // Properties
- //
- public FieldDirection Direction {
- get {
- return direction;
- }
- set {
- direction = value;
- }
- }
- public CodeExpression Expression {
- get {
- return expression;
- }
- set {
- expression = value;
- }
- }
- }
- }
|