| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Reflection.AssemblyCopyrightAttribute.cs
- //
- // Duncan Mak <[email protected]>
- //
- // (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; }
- }
- }
- }
|