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/corlib/System.Runtime.InteropServices/TypeLibTypeAttribute.cs')
-rwxr-xr-xmcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeAttribute.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeAttribute.cs b/mcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeAttribute.cs
deleted file mode 100755
index d76bfcd814b..00000000000
--- a/mcs/class/corlib/System.Runtime.InteropServices/TypeLibTypeAttribute.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// System.Runtime.InteropServices.TypeLibTypeAttribute.cs
-//
-// Name: Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-using System;
-
-namespace System.Runtime.InteropServices {
-
- [AttributeUsage (AttributeTargets.Method)]
- public sealed class TypeLibTypeAttribute : Attribute
- {
- TypeLibTypeFlags flags;
-
- public TypeLibTypeAttribute (short flags)
- {
- this.flags = (TypeLibTypeFlags) flags;
- }
-
- public TypeLibTypeAttribute (TypeLibTypeFlags flags)
- {
- this.flags = flags;
- }
-
- public TypeLibTypeFlags Value {
- get { return flags; }
- }
- }
-}