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.Reflection/MethodInfo.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/MethodInfo.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/class/corlib/System.Reflection/MethodInfo.cs b/mcs/class/corlib/System.Reflection/MethodInfo.cs
deleted file mode 100644
index 505a9b626bd..00000000000
--- a/mcs/class/corlib/System.Reflection/MethodInfo.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// System.Reflection/MethodInfo.cs
-//
-// Author:
-// Paolo Molaro (lupus@ximian.com)
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-//
-
-using System;
-
-namespace System.Reflection {
-
- [Serializable]
- public abstract class MethodInfo: MethodBase {
-
- public abstract MethodInfo GetBaseDefinition();
-
- protected MethodInfo() {
- }
- public override MemberTypes MemberType { get {return MemberTypes.Method;} }
- public abstract Type ReturnType { get; }
- public abstract ICustomAttributeProvider ReturnTypeCustomAttributes { get; }
- }
-
-}