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/CodeConstructor.cs')
-rwxr-xr-xmcs/class/System/System.CodeDom/CodeConstructor.cs52
1 files changed, 0 insertions, 52 deletions
diff --git a/mcs/class/System/System.CodeDom/CodeConstructor.cs b/mcs/class/System/System.CodeDom/CodeConstructor.cs
deleted file mode 100755
index bbf99879bb4..00000000000
--- a/mcs/class/System/System.CodeDom/CodeConstructor.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-//
-// System.CodeDom CodeConstructor 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 CodeConstructor
- : CodeMemberMethod
- {
- private CodeExpressionCollection baseConstructorArgs;
- private CodeExpressionCollection chainedConstructorArgs;
-
- //
- // Constructors
- //
- public CodeConstructor()
- {
- }
-
- //
- // Properties
- //
- public CodeExpressionCollection BaseConstructorArgs {
- get {
- if ( baseConstructorArgs == null )
- baseConstructorArgs = new CodeExpressionCollection();
-
- return baseConstructorArgs;
- }
- }
-
- public CodeExpressionCollection ChainedConstructorArgs {
- get {
- if ( chainedConstructorArgs == null )
- chainedConstructorArgs = new CodeExpressionCollection();
-
- return chainedConstructorArgs;
- }
- }
- }
-}