ConstructorInfo.cs 366 B

12345678910111213141516171819
  1. //
  2. // System.Reflection/ConstructorInfo.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. using System.Reflection;
  11. namespace System.Reflection {
  12. public abstract class ConstructorInfo : MethodBase {
  13. public override MemberTypes MemberType {
  14. get {return MemberTypes.Constructor;}
  15. }
  16. }
  17. }