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/CodeTypeMember.cs')
-rwxr-xr-xmcs/class/System/System.CodeDom/CodeTypeMember.cs81
1 files changed, 0 insertions, 81 deletions
diff --git a/mcs/class/System/System.CodeDom/CodeTypeMember.cs b/mcs/class/System/System.CodeDom/CodeTypeMember.cs
deleted file mode 100755
index cc7ce536080..00000000000
--- a/mcs/class/System/System.CodeDom/CodeTypeMember.cs
+++ /dev/null
@@ -1,81 +0,0 @@
-//
-// System.CodeDom CodeTypeMember Class implementation
-//
-// Author:
-// Sean MacIsaac (macisaac@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 CodeTypeMember
- : CodeObject
- {
- private string name;
- private MemberAttributes attributes;
- private CodeCommentStatementCollection comments;
- private CodeAttributeDeclarationCollection customAttributes;
- private CodeLinePragma linePragma;
-
- //
- // Constructors
- //
- public CodeTypeMember()
- {
- }
-
- //
- // Properties
- //
- public MemberAttributes Attributes {
- get {
- return attributes;
- }
- set {
- attributes = value;
- }
- }
-
- public CodeCommentStatementCollection Comments {
- get {
- if ( comments == null )
- comments = new CodeCommentStatementCollection();
- return comments;
- }
- }
-
-
- public CodeAttributeDeclarationCollection CustomAttributes {
- get {
- if ( customAttributes == null )
- customAttributes = new CodeAttributeDeclarationCollection();
- return customAttributes;
- }
- }
-
- public CodeLinePragma LinePragma {
- get {
- return linePragma;
- }
- set {
- linePragma = value;
- }
- }
-
- public string Name {
- get {
- return name;
- }
- set {
- name = value;
- }
- }
- }
-}