IntrinsicAttribute.cs 270 B

123456
  1. namespace System.Runtime.CompilerServices;
  2. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Field, Inherited = false)]
  3. public sealed class IntrinsicAttribute : Attribute
  4. {
  5. }