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/CodeObject.cs')
-rwxr-xr-xmcs/class/System/System.CodeDom/CodeObject.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/mcs/class/System/System.CodeDom/CodeObject.cs b/mcs/class/System/System.CodeDom/CodeObject.cs
deleted file mode 100755
index 35b6053e73c..00000000000
--- a/mcs/class/System/System.CodeDom/CodeObject.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// System.CodeDom CodeObject class implementation
-//
-// Author:
-// Sean MacIsaac (macisaac@ximian.com)
-// Daniel Stodden (stodden@in.tum.de)
-//
-// (C) 2001 Ximian, Inc.
-//
-
-using System.Runtime.InteropServices;
-using System.Collections;
-using System.Collections.Specialized;
-
-namespace System.CodeDom
-{
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeObject
- {
- private IDictionary userData;
-
- //
- // Properties
- //
- public IDictionary UserData {
- get {
- if ( userData == null )
- userData = new ListDictionary();
- return userData;
- }
- }
- }
-}