ParameterInfo.cs 387 B

1234567891011121314151617181920212223
  1. // System.Reflection.ParameterInfo
  2. //
  3. // Sean MacIsaac ([email protected])
  4. //
  5. // (C) 2001 Ximian, Inc.
  6. namespace System.Reflection
  7. {
  8. public class ParameterInfo
  9. {
  10. public virtual object[] GetCustomAttributes (bool inherit)
  11. {
  12. // FIXME
  13. return null;
  14. }
  15. public virtual object[] GetCustomAttributes (Type attributeType, bool inherit)
  16. {
  17. // FIXME
  18. return null;
  19. }
  20. }
  21. }