Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.CodeDom/CodeCastExpression.cs')
-rwxr-xr-xmcs/class/System/System.CodeDom/CodeCastExpression.cs71
1 files changed, 0 insertions, 71 deletions
diff --git a/mcs/class/System/System.CodeDom/CodeCastExpression.cs b/mcs/class/System/System.CodeDom/CodeCastExpression.cs
deleted file mode 100755
index 90ee10aa2f0..00000000000
--- a/mcs/class/System/System.CodeDom/CodeCastExpression.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//
-// System.CodeDom CodeCastExpression Class implementation
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-// Daniel Stodden (stodden@in.tum.de)
-//
-// (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;
- }
- }
- }
-}