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

IODescriptionAttribute.cs « System.IO « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10e22173cc72811d513c0825dd1db2819f7baf1e (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
31
32
33
34
35
36
37
38
39
40
// 
// System.IO.IODescriptionAttribute.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2002
//

using System;
using System.ComponentModel;

namespace System.IO {
	[AttributeUsage (AttributeTargets.All)]
	public class IODescriptionAttribute : DescriptionAttribute {

		#region Fields

		string description;

		#endregion // Fields

		#region Constructors

		public IODescriptionAttribute (string description)
			: base (description)
		{
		}
		
		#endregion // Constructors

		#region Methods

		public override string Description {
			get { return DescriptionValue; }
		}

		#endregion // Methods
	}
}