2002-06-08 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System / TODOAttribute.cs
index e14b61a2649b9d3168c0569de67a72eda4eba320..0920ce8f92decaab107a0701d9e2318ac2be2016 100644 (file)
@@ -16,10 +16,10 @@ namespace System {
        /// <remarks>
        ///   Use this to decorate any element which you think is not complete
        /// </remarks>
-       [AttributeUsage (AttributeTargets.All)]
-       internal class MonoTODOAttribute : Attribute {
+       [AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
+       public class MonoTODOAttribute : Attribute {
 
-               string comment;
+               private string comment;
                
                public MonoTODOAttribute ()
                {}
@@ -28,5 +28,10 @@ namespace System {
                {
                        this.comment = comment;
                }
+
+               public string Comment
+               {
+                       get { return comment; }
+               }
        }
 }