123456789101112 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- // ReSharper disable once CheckNamespace
- namespace System.Diagnostics.CodeAnalysis;
- /// <summary>
- /// Specifies that this constructor sets all required members for the current type, and callers
- /// do not need to set any required members themselves.
- /// </summary>
- [AttributeUsage (AttributeTargets.Constructor)]
- public sealed class SetsRequiredMembersAttribute : Attribute;
|