RuntimeMethodHandle.cs 859 B

12345678910111213141516171819
  1. namespace System
  2. {
  3. public partial struct RuntimeMethodHandle : System.Runtime.Serialization.ISerializable
  4. {
  5. private object _dummy;
  6. public System.IntPtr Value { get { throw null; } }
  7. public override bool Equals(object obj) { throw null; }
  8. public bool Equals(System.RuntimeMethodHandle handle) { throw null; }
  9. public System.IntPtr GetFunctionPointer() { throw null; }
  10. public override int GetHashCode() { throw null; }
  11. public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
  12. public static bool operator ==(System.RuntimeMethodHandle left, System.RuntimeMethodHandle right) { throw null; }
  13. public static bool operator !=(System.RuntimeMethodHandle left, System.RuntimeMethodHandle right) { throw null; }
  14. internal RuntimeMethodHandle (IntPtr ptr)
  15. {
  16. }
  17. }
  18. }