MethodBase.cs 798 B

123456789101112131415161718192021222324252627282930
  1. namespace System.Reflection
  2. {
  3. partial class MethodBase
  4. {
  5. public static MethodBase GetMethodFromHandle (RuntimeMethodHandle handle) { throw null; }
  6. public static MethodBase GetMethodFromHandle (RuntimeMethodHandle handle, RuntimeTypeHandle declaringType) { throw null; }
  7. public static MethodBase GetCurrentMethod() { throw null; }
  8. internal virtual ParameterInfo[] GetParametersNoCopy ()
  9. {
  10. throw new NotImplementedException ();
  11. }
  12. internal virtual ParameterInfo[] GetParametersInternal ()
  13. {
  14. throw new NotImplementedException ();
  15. }
  16. internal virtual int GetParametersCount ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. internal static MethodBase GetMethodFromHandleNoGenericCheck (RuntimeMethodHandle handle)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. }
  25. }