| 12345678910111213141516171819202122232425 |
- //
- // System.Runtime.CompilerServices.RequiredAttributeAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Copyright, Ximian Inc.
- using System;
- namespace System.Runtime.CompilerServices {
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |
- AttributeTargets.Enum | AttributeTargets.Interface)]
- [Serializable]
- public sealed class RequiredAttributeAttribute : Attribute
- {
- public RequiredAttributeAttribute (Type requiredContract)
- {
- }
- public Type RequiredContract {
- get { throw new NotSupportedException (); }
- }
- }
- }
|