singrdk/base/Interfaces/Baseattrs/CustomConstantAttribute.csi

15 lines
425 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System.Runtime.CompilerServices
{
//| <include file='doc\CustomConstantAttribute.uex' path='docs/doc[@for="CustomConstantAttribute"]/*' />
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter, Inherited=false)]
public abstract class CustomConstantAttribute : Attribute
{
}
}