36 #pragma warning disable 436 37 [AttributeUsage (AttributeTargets.All, AllowMultiple=
true)]
38 internal class MonoTODOAttribute : Attribute {
42 public MonoTODOAttribute ()
46 public MonoTODOAttribute (
string comment)
48 this.comment = comment;
51 public string Comment {
52 get {
return comment; }
56 [AttributeUsage (AttributeTargets.All, AllowMultiple=
true)]
57 internal class MonoDocumentationNoteAttribute : MonoTODOAttribute {
59 public MonoDocumentationNoteAttribute (
string comment)
65 [AttributeUsage (AttributeTargets.All, AllowMultiple=
true)]
66 internal class MonoExtensionAttribute : MonoTODOAttribute {
68 public MonoExtensionAttribute (
string comment)
74 [AttributeUsage (AttributeTargets.All, AllowMultiple=
true)]
75 internal class MonoInternalNoteAttribute : MonoTODOAttribute {
77 public MonoInternalNoteAttribute (
string comment)
83 [AttributeUsage (AttributeTargets.All, AllowMultiple=
true)]
84 internal class MonoLimitationAttribute : MonoTODOAttribute {
86 public MonoLimitationAttribute (
string comment)
92 [AttributeUsage (AttributeTargets.All, AllowMultiple=
true)]
93 internal class MonoNotSupportedAttribute : MonoTODOAttribute {
95 public MonoNotSupportedAttribute (
string comment)
100 #pragma warning restore 436