| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Reflection.AssemblyCompanyAttribute.cs
- //
- // Author: Duncan Mak <[email protected]>
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Reflection
- {
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class AssemblyCompanyAttribute : Attribute
- {
- // Field
- private string name;
-
- // Constructor
- public AssemblyCompanyAttribute (string company)
- {
- name = company;
- }
-
- // Properties
- public string Company
- {
- get { return name; }
- }
- }
- }
|