Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TODOAttribute.cs « Assembly « Custommarshalers « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dafa6c7bf54f107474ead754599bbdaa991c98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// TODOAttribute.cs
//
// Author:
//   Ravi Pratap (ravi@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//
using 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)]
internal class MonoTODOAttribute : Attribute {

	string comment;

	public MonoTODOAttribute ()
	{}

	public MonoTODOAttribute (string comment)
	{
		this.comment = comment;
	}
}