created an new assembly System.Runtime.Remoting
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting / TODOAttribute.cs
1 //
2 // TODOAttribute.cs
3 //
4 // Author:
5 //   Ravi Pratap (ravi@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System {
11
12         /// <summary>
13         ///   The TODO attribute is used to flag all incomplete bits in our class libraries
14         /// </summary>
15         ///
16         /// <remarks>
17         ///   Use this to decorate any element which you think is not complete
18         /// </remarks>
19         [AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
20         public class MonoTODOAttribute : Attribute {
21
22                 private string comment;
23                 
24                 public MonoTODOAttribute ()
25                 {}
26
27                 public MonoTODOAttribute (string comment)
28                 {
29                         this.comment = comment;
30                 }
31
32                 public string Comment
33                 {
34                         get { return comment; }
35                 }
36         }
37 }