Label.cs 466 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Reflection.Emit/Label.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Reflection.Emit {
  10. [Serializable]
  11. public struct Label {
  12. internal int label;
  13. internal Label (int val) {
  14. label = val;
  15. }
  16. [MonoTODO]
  17. public override bool Equals (object obj) {
  18. /* FIXME */
  19. return false;
  20. }
  21. public override int GetHashCode () {
  22. return label.GetHashCode ();
  23. }
  24. }
  25. }