TODOAttribute.cs 599 B

1234567891011121314151617181920212223242526272829303132
  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. }
  27. }