| 12345678910111213141516171819 |
- //
- // System.Reflection/ConstructorInfo.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Reflection;
- namespace System.Reflection {
- public abstract class ConstructorInfo : MethodBase {
- public override MemberTypes MemberType {
- get {return MemberTypes.Constructor;}
- }
- }
- }
|