| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- //
- // System.CodeDom CodeCastExpression Class implementation
- //
- // Author:
- // Miguel de Icaza ([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 CodeCastExpression
- : CodeExpression
- {
- private CodeTypeReference targetType;
- private CodeExpression expression;
-
- //
- // Constructors
- //
- public CodeCastExpression ()
- {
- }
- public CodeCastExpression (CodeTypeReference targetType, CodeExpression expression)
- {
- this.targetType = targetType;
- this.expression = expression;
- }
- public CodeCastExpression (string targetType, CodeExpression expression)
- {
- this.targetType = new CodeTypeReference( targetType );
- this.expression = expression;
- }
- public CodeCastExpression (Type targetType, CodeExpression expression)
- {
- this.targetType = new CodeTypeReference( targetType );
- this.expression = expression;
- }
- //
- // Properties
- //
- public CodeExpression Expression {
- get {
- return expression;
- }
- set {
- expression = value;
- }
- }
- public CodeTypeReference TargetType {
- get {
- return targetType;
- }
- set {
- targetType = value;
- }
- }
- }
- }
|