| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Reflection.AssemblyKeyFileAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Reflection
- {
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class AssemblyKeyFileAttribute : Attribute
- {
- // Field
- private string name;
-
- // Constructor
- public AssemblyKeyFileAttribute (string keyFile)
- {
- name = keyFile;
- }
- // Property
- public string KeyFile
- {
- get { return name; }
- }
- }
- }
|