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

UsageComplementAttribute.cs « Mono.GetOptions « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6f03be4d4c0545bc764d9f025840b5ae51ce101 (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
//
// UsageComplementAttribute.cs
//
// Author: Rafael Teixeira (rafaelteixeirabr@hotmail.com)
//
// (C) 2002 Rafael Teixeira
//


using System;

namespace Mono
{
	[AttributeUsage(AttributeTargets.Assembly)]
	public class UsageComplementAttribute : System.Attribute
	{
		public string Details;

		public UsageComplementAttribute(string details)
		{
			Details = details;
		}

		public override string ToString()
		{
			return Details;
		}
	}
}