| 12345678910111213141516171819202122232425 |
- //
- // System.Reflection/MethodInfo.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Reflection {
- 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; }
- }
- }
|