CommandID.cs 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // System.ComponentModel.Design.CommandID.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Runtime.InteropServices;
  9. namespace System.ComponentModel.Design
  10. {
  11. [ComVisible(true)]
  12. public class CommandID
  13. {
  14. [MonoTODO]
  15. internal CommandID (string text) {
  16. throw new NotImplementedException ();
  17. }
  18. [MonoTODO]
  19. public CommandID (Guid menuGroup, int commandID) {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public virtual Guid Guid
  24. {
  25. get {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. [MonoTODO]
  30. public virtual int ID
  31. {
  32. get {
  33. throw new NotImplementedException ();
  34. }
  35. }
  36. [MonoTODO]
  37. public override bool Equals (object obj)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public override int GetHashCode()
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public override string ToString()
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. }
  52. }