2002-03-07 Nick Drochak <ndrochak@gol.com>
[mono.git] / mcs / class / corlib / System.Reflection / AssemblyDescriptionAttribute.cs
1 //
2 // System.Reflection.AssemblyDescriptionAttribute.cs
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc. http://www.ximian.com
7 //
8
9 namespace System.Reflection
10 {
11         [AttributeUsage (AttributeTargets.Assembly)]
12         public sealed class AssemblyDescriptionAttribute : Attribute
13         {
14                 // Field
15                 private string name;
16                 
17                 // Constructor
18                 public AssemblyDescriptionAttribute (string description)
19                 {
20                         name = description;
21                 }
22
23                 // Property
24                 public string Description
25                 {
26                         get { return name; }
27                 }
28         }
29                 
30 }