namespace System.Diagnostics.CodeAnalysis; [AttributeUsage(AttributeTargets.Parameter)] public sealed class MaybeNullWhenAttribute : Attribute { public bool ReturnValue { get; } public MaybeNullWhenAttribute(bool returnValue) { ReturnValue = returnValue; } }