SkipLocalsInitAttribute.cs 539 B

1234567891011121314
  1. namespace System.Runtime.CompilerServices;
  2. [AttributeUsage (
  3. AttributeTargets.Class
  4. | AttributeTargets.Constructor
  5. | AttributeTargets.Event
  6. | AttributeTargets.Interface
  7. | AttributeTargets.Method
  8. | AttributeTargets.Module
  9. | AttributeTargets.Property
  10. | AttributeTargets.Struct,
  11. Inherited = false)]
  12. internal sealed class SkipLocalsInitAttribute : Attribute;