17 lines
642 B
Plaintext
17 lines
642 B
Plaintext
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
//| <include file='doc\DateTimeConstantAttribute.uex' path='docs/doc[@for="DateTimeConstantAttribute"]/*' />
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter, Inherited=false)]
|
|
public sealed class DateTimeConstantAttribute : CustomConstantAttribute
|
|
{
|
|
//| <include file='doc\DateTimeConstantAttribute.uex' path='docs/doc[@for="DateTimeConstantAttribute.DateTimeConstantAttribute"]/*' />
|
|
public DateTimeConstantAttribute(long ticks);
|
|
}
|
|
}
|
|
|