ILRuntimeParameterInfo.cs 551 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Reflection;
  6. using System.Globalization;
  7. using ILRuntime.CLR.TypeSystem;
  8. namespace ILRuntime.Reflection
  9. {
  10. public class ILRuntimeParameterInfo : ParameterInfo
  11. {
  12. IType type;
  13. public ILRuntimeParameterInfo(IType type)
  14. {
  15. this.type = type;
  16. }
  17. public override Type ParameterType
  18. {
  19. get
  20. {
  21. return type.ReflectionType;
  22. }
  23. }
  24. }
  25. }