| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // TODOAttribute.cs
- //
- // Author:
- // Ravi Pratap ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System {
- /// <summary>
- /// The TODO attribute is used to flag all incomplete bits in our class libraries
- /// </summary>
- ///
- /// <remarks>
- /// Use this to decorate any element which you think is not complete
- /// </remarks>
- [AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
- private string comment;
-
- public MonoTODOAttribute ()
- {}
- public MonoTODOAttribute (string comment)
- {
- this.comment = comment;
- }
- public string Comment
- {
- get { return comment; }
- }
- }
- }
|