File: System\Numerics\JITIntrinsicAttribute.cs | |
Project: ndp\fx\src\Numerics\System.Numerics.csproj (System.Numerics) |
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace System.Numerics { /// <summary> /// An attribute that can be attached to JIT Intrinsic methods/properties /// </summary> [AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Property)] internal class JitIntrinsicAttribute : Attribute { } } |