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

AssemblyCopyrightAttribute.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 264a905f0ef29ef931bc4b0beb64ad20f9fb289a (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
//
// System.Reflection.AssemblyCopyrightAttribute.cs
//
// Duncan Mak <duncan@ximian.com>
//
// (C) 2002 Ximian, Inc. http://www.ximian.com
//

using System;

namespace System.Reflection
{
	[AttributeUsage (AttributeTargets.Assembly)]
	public sealed class AssemblyCopyrightAttribute : Attribute
	{
		// Field
		private string name;
		
		// Constructor
		public AssemblyCopyrightAttribute (string copyright)
		{
			name = copyright;
		}
		
		// Properties
		public string Copyright
		{
			get { return name; }
		}
	}
}