TODOAttribute.cs 657 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // TODOAttribute.cs
  3. //
  4. // Author:
  5. // Ravi Pratap ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Xml {
  10. /// <summary>
  11. /// The TODO attribute is used to flag all incomplete bits in our class libraries
  12. /// </summary>
  13. ///
  14. /// <remarks>
  15. /// Use this to decorate any element which you think is not complete
  16. /// </remarks>
  17. [AttributeUsage (AttributeTargets.All)]
  18. internal class MonoTODOAttribute : Attribute {
  19. string comment;
  20. public MonoTODOAttribute ()
  21. {}
  22. public MonoTODOAttribute (string comment)
  23. {
  24. this.comment = comment;
  25. }
  26. public string Comment {
  27. get { return comment; }
  28. }
  29. }
  30. }